A user wants a list of documents with keywords that contain the words “interface,” “class” or both
“interface” and “class.”
How can the user complete the following query to accomplish this?
select object_name from dm_document _____

A.
where any keywords=’interface’ or keywords=’class’
B.
where any keywords=’interface’ and keywords=’class’
C.
where any keywords=’interface’ or any keywords=’class’
D.
where any keywords=’interface’ and any keywords=’class’
Explanation: