InterviewSolution
Saved Bookmarks
| 1. |
You are an admin for MongoDB test database having sample collection. How can you export the contents of sample collection into CSV file? |
|
Answer» A query that is able to return entire results only by using the index is called a Covered Query. This is one of the optimization techniques that can be used with queries for faster RETRIEVAL of data. A query can be a covered query only if
Since everything is part of the index, there is no need for the query to check the DOCUMENTS for any information. |
|