MongoDB projection means to select only the necessary data instead of selecting the entire data for a file. If a document has 5 fields, you need to display only 3, and then select only 3 fields.
Find () method
MongoDB's Find () method, which is interpreted in the MongoDB query document, accepts the second optional parameter that is the list of fields to retrieve. In MongoDB, when the Find () method is executed, it displays all fields of a document. To limit this, you need to set the field List value 1 or 0. 1 is used to display the field and 0 is used to hide the field.
Grammar:
The Find () method has a projection basic syntax as follows
>db. Collection_name. Find({},{KEY:1})
Example
Consider the collection Myycol with the following data
{ "_ID" : ObjectId(5983548781331adf45ec5), "Title":"MongoDB Overview"}{ "_id" : objectid ( 5983548781331adf45ec6 "title" : "NoSQL Overview" }{ "_id" : objectid5983548781331adf45ec7 " Title ":" Yiibai Overview "}
The following example will show the title of the file and a few questions about the file.
>db.. Find ({},{ "title" :1,< Span class= "PLN" >_id:0}) { "title" : "MongoDB Overview" }{ "title" : "NoSQL Overview" }{ "title" : "Yiibai Overview" }
MongoDB Tutorial Lesson 14th MongoDB Projection