EMC Exam Questions

Which DQL statement is correct for changing the title property of a document, named "Arch Diagr

Which DQL statement is correct for changing the title property of a document, named “Arch
Diagram”, to “Figure 1”?

A.
UPDATE dm_document SET title = ‘Figure 1’ WHERE object_name = ‘Arch Diagram’

B.
ALTER dm_document OBJECT SET title = ‘Figure 1’ WHERE object_name = ‘Arch Diagram’

C.
UPDATE dm_document OBJECT SET title = ‘Figure 1’ WHERE object_name = ‘Arch Diagram’

D.
ALTER dm_document SET title = ‘Figure 1’ WHERE object_name = ‘Arch Diagram’

Explanation: