A user wants to write a DQL query that can be run on a daily basis to determine which documents
were modified since the start of the previous day.
How should the following query be completed to achieve this result? selectobject_name from
dm_document _____

A.
where r_modify_date>= date(yesterday)
B.
where r_modify_date>date(yesterday)
C.
where r_change_date>date(yesterday)
D.
where r_change_date>= date(yesterday)