

InterviewSolution
Saved Bookmarks
1. |
_________ is used to view statistics about the query plan for a given query.(a) db.explain()(b) cursor.explain()(c) cursor.explainstats()(d) all of the mentioned |
Answer» The correct choice is (b) cursor.explain() To elaborate: This information can help as you develop indexing strategies. |
|