Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

จะรับรายการค่าฟิลด์เอกสารย่อยที่ชัดเจนใน MongoDB ได้อย่างไร


ในการรับรายการค่าฟิลด์เอกสารย่อยที่ชัดเจน คุณสามารถใช้ dot(.) ไวยากรณ์มีดังนี้ −

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")
}

แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้เมธอด find() แบบสอบถามมีดังต่อไปนี้ −

> 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" ]