MongoDB में एम्बेडेड दस्तावेज़ों को क्वेरी करने के लिए, कुल () का उपयोग करें। आइए दस्तावेजों के साथ एक संग्रह बनाएं -
> db.demo705.insertOne( ... { ... _id:101, ... "Information": ... [ ... { ... "StudentName":"Chris", ... "StudentAge":21 ... }, ... { ... "StudentName":"David", ... "StudentAge":23 ... }, ... { ... "StudentName":"Bob", ... "StudentAge":20 ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : 101 }
संग्रह से सभी दस्तावेज़ों को खोजने () विधि की सहायता से प्रदर्शित करें -
> db.demo705.find();
यह निम्नलिखित आउटपुट देगा -
{ "_id" : 101, "Information" : [ { "StudentName" : "Chris", "StudentAge" : 21 }, { "StudentName" : "David", "StudentAge" : 23 }, { "StudentName" : "Bob", "StudentAge" : 20 } ] }
MongoDB में एम्बेडेड दस्तावेज़ों को क्वेरी करने का तरीका निम्नलिखित है -
> db.demo705.aggregate( ... { $unwind: '$Information' }, ... { $match: {'Information.StudentAge': {$gte: 21}}}, ... { $project: {Information: 1}} ... )
यह निम्नलिखित आउटपुट देगा -
{ "_id" : 101, "Information" : { "StudentName" : "Chris", "StudentAge" : 21 } } { "_id" : 101, "Information" : { "StudentName" : "David", "StudentAge" : 23 } }