किसी सरणी के अंदर किसी दस्तावेज़ से विशिष्ट फ़ील्ड प्रोजेक्ट करने के लिए, आप स्थितीय ($) ऑपरेटर का उपयोग कर सकते हैं।
आइए पहले दस्तावेजों के साथ एक संग्रह बनाएं
> db.projectSpecificFieldDemo.insertOne( ... { ... "UniqueId": 101, ... "StudentDetails" : [{"StudentName" : "Chris", "StudentCountryName ": "US"}, ... {"StudentName" : "Robert", "StudentCountryName" : "UK"}, ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5ca27aeb6304881c5ce84ba2") } > db.projectSpecificFieldDemo.insertOne( { "UniqueId": 102, "StudentDetails" : [{"StudentName" : "Robert", "StudentCountryName ": "UK"}, {"StudentName" : "David", "StudentCountryName" : "AUS"}, ] } ); { "acknowledged" : true, "insertedId" : ObjectId("5ca27b106304881c5ce84ba3") }
खोज () विधि की मदद से संग्रह से सभी दस्तावेजों को प्रदर्शित करने के लिए क्वेरी निम्नलिखित है
> db.projectSpecificFieldDemo.find().pretty();
यह निम्नलिखित आउटपुट उत्पन्न करेगा
{ "_id" : ObjectId("5ca27aeb6304881c5ce84ba2"), "UniqueId" : 101, "StudentDetails" : [ { "StudentName" : "Chris", "StudentCountryName " : "US" }, { "StudentName" : "Robert", "StudentCountryName" : "UK" } ] } { "_id" : ObjectId("5ca27b106304881c5ce84ba3"), "UniqueId" : 102, "StudentDetails" : [ { "StudentName" : "Robert", "StudentCountryName " : "UK" }, { "StudentName" : "David", "StudentCountryName" : "AUS" } ] }
किसी सरणी के अंदर किसी दस्तावेज़ से विशिष्ट फ़ील्ड को प्रोजेक्ट करने के लिए क्वेरी निम्नलिखित है
> var myDocument = { UniqueId : 101, 'StudentDetails.StudentName' : 'Chris' }; > var myProjection= {'StudentDetails.$': 1 }; > db.projectSpecificFieldDemo.find(myDocument , myProjection).pretty();
यह निम्नलिखित आउटपुट उत्पन्न करेगा
{ "_id" : ObjectId("5ca27aeb6304881c5ce84ba2"), "StudentDetails" : [ { "StudentName" : "Chris", "StudentCountryName " : "US" } ] }