आप सरणी में तत्व से मिलान करने के लिए सीमा (1) के साथ $ या ऑपरेटर का उपयोग कर सकते हैं। आइए पहले दस्तावेजों के साथ एक संग्रह बनाएं -
> db.matchElementInArrayDemo.insertOne( ... { ... "StudentName" : "Chris" , ... "StudentOtherDetails" : ... [ ... {"StudentCountryName" : "US" , "StudentSkills" : "MongoDB"}, ... {"StudentCountryName" : "UK" , "StudentSkills" : "Java"} ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5cd423282cba06f46efe9ee2") } > db.matchElementInArrayDemo.insertOne( ... { ... "StudentName" : "Chris" , ... "StudentOtherDetails" : ... [ ... {"StudentCountryName" : "AUS" , "StudentSkills" : "PHP"}, ... {"StudentCountryName" : "US" , "StudentSkills" : "MongoDB"} ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5cd423412cba06f46efe9ee3") }
खोज () विधि की मदद से संग्रह से सभी दस्तावेजों को प्रदर्शित करने के लिए क्वेरी निम्नलिखित है -
> db.matchElementInArrayDemo.find().pretty();
यह निम्नलिखित आउटपुट देगा -
{ "_id" : ObjectId("5cd423282cba06f46efe9ee2"), "StudentName" : "Chris", "StudentOtherDetails" : [ { "StudentCountryName" : "US", "StudentSkills" : "MongoDB" }, { "StudentCountryName" : "UK", "StudentSkills" : "Java" } ] } { "_id" : ObjectId("5cd423412cba06f46efe9ee3"), "StudentName" : "Chris", "StudentOtherDetails" : [ { "StudentCountryName" : "AUS", "StudentSkills" : "PHP" }, { "StudentCountryName" : "US", "StudentSkills" : "MongoDB" } ] }
यहाँ MongoDB की सरणी में तत्व से मिलान करने के लिए क्वेरी है -
> db.matchElementInArrayDemo.find( { $or : [ {"StudentOtherDetails.StudentCountryName": "US" } ,{"StudentOtherDetails.StudentSkills": "MongoDB" } ] } ).limit(1);
यह निम्नलिखित आउटपुट देगा -
{ "_id" : ObjectId("5cd423282cba06f46efe9ee2"), "StudentName" : "Chris", "StudentOtherDetails" : [ { "StudentCountryName" : "US", "StudentSkills" : "MongoDB" }, { "StudentCountryName" : "UK", "StudentSkills" : "Java" } ] }