Google News
logo
MongoDB - Quiz(MCQ)
________ is used to determine whether a query is a covered query.
A)
explainall()
B)
explain()
C)
explainstats()
D)
All of the above

Correct Answer :   explain()


Explanation : db.collection.explain() provides information on the execution of other operations, such as db.collection.update().

Advertisement