उप-दस्तावेज़ फ़ील्ड मानों की विशिष्ट सूची प्राप्त करने के लिए, आप डॉट (।) का उपयोग कर सकते हैं। वाक्य रचना इस प्रकार है -
db.yourCollectionName.distinct("yourOuterFieldName.yourInnerFieldName");
अवधारणा को समझने के लिए, आइए हम दस्तावेज़ के साथ एक संग्रह बनाते हैं। दस्तावेज़ के साथ संग्रह बनाने की क्वेरी इस प्रकार है -
> db.getDistinctListOfSubDocumentFieldDemo.insertOne( ... { ... "StudentId": 101, ... "StudentPersonalDetails": [ ... { ... "StudentName": "John", ... "StudentAge":24 ... }, ... { ... "StudentName": "Carol", ... "StudentAge":21 ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5c90a9abb74d7cfe6392d7d8") } > db.getDistinctListOfSubDocumentFieldDemo.insertOne( ... ... { ... "StudentId": 102, ... "StudentPersonalDetails": [ ... { ... "StudentName": "Carol", ... "StudentAge":26 ... }, ... { ... "StudentName": "Bob", ... "StudentAge":21 ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5c90a9ceb74d7cfe6392d7d9") } > db.getDistinctListOfSubDocumentFieldDemo.insertOne( ... { ... "StudentId": 103, ... "StudentPersonalDetails": [ ... { ... "StudentName": "Bob", ... "StudentAge":25 ... }, ... { ... "StudentName": "David", ... "StudentAge":24 ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5c90a9e6b74d7cfe6392d7da") }
संग्रह से सभी दस्तावेज़ों को ढूँढें () विधि की सहायता से प्रदर्शित करें। क्वेरी इस प्रकार है -
> db.getDistinctListOfSubDocumentFieldDemo.find().pretty();
निम्न आउटपुट है -
{ "_id" : ObjectId("5c90a9abb74d7cfe6392d7d8"), "StudentId" : 101, "StudentPersonalDetails" : [ { "StudentName" : "John", "StudentAge" : 24 }, { "StudentName" : "Carol", "StudentAge" : 21 } ] } { "_id" : ObjectId("5c90a9ceb74d7cfe6392d7d9"), "StudentId" : 102, "StudentPersonalDetails" : [ { "StudentName" : "Carol", "StudentAge" : 26 }, { "StudentName" : "Bob", "StudentAge" : 21 } ] } { "_id" : ObjectId("5c90a9e6b74d7cfe6392d7da"), "StudentId" : 103, "StudentPersonalDetails" : [ { "StudentName" : "Bob", "StudentAge" : 25 }, { "StudentName" : "David", "StudentAge" : 24 } ] }
उप-दस्तावेज़ फ़ील्ड मानों की विशिष्ट सूची प्राप्त करने के लिए यहां क्वेरी है -
> db.getDistinctListOfSubDocumentFieldDemo.distinct("StudentPersonalDetails.StudentName");
निम्न आउटपुट है -
[ "Carol", "John", "Bob", "David" ]