A user wants to replace the first author of a document named “document1” with userA.
Which DQL statement will do this?
A.
update dm_document object set authors[1] = ‘userA’ where object_name = ‘document1’
B.
update dm_document object insert authors[0] = ‘userA’ where object_name = ‘document1’
C.
update dm_document object set authors[0] = ‘userA’ where object_name = ‘document1’
D.
update dm_document object insert authors[1] = ‘userA’ where object_name = ‘document1’