หากต้องการค้นหาค่าสูงสุดจากอาร์เรย์ย่อยในเอกสาร คุณสามารถใช้กรอบงานรวมได้ ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน
> db.findHighestValueDemo.insertOne( ... { ... _id: 10001, ... "StudentDetails": [ ... { "StudentName": "Chris", "StudentMathScore": 56}, ... { "StudentName": "Robert", "StudentMathScore":47 }, ... { "StudentName": "John", "StudentMathScore": 98 }] ... } ... ); { "acknowledged" : true, "insertedId" : 10001 } > db.findHighestValueDemo.insertOne( ... { ... _id: 10002, ... "StudentDetails": [ ... { "StudentName": "Ramit", "StudentMathScore": 89}, ... { "StudentName": "David", "StudentMathScore":76 }, ... { "StudentName": "Bob", "StudentMathScore": 97 } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : 10002 }
ต่อไปนี้เป็นแบบสอบถามเพื่อแสดงเอกสารทั้งหมดจากคอลเลกชันโดยใช้วิธี find()
> db.findHighestValueDemo.find().pretty();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้
{ "_id" : 10001, "StudentDetails" : [ { "StudentName" : "Chris", "StudentMathScore" : 56 }, { "StudentName" : "Robert", "StudentMathScore" : 47 }, { "StudentName" : "John", "StudentMathScore" : 98 } ] } { "_id" : 10002, "StudentDetails" : [ { "StudentName" : "Ramit", "StudentMathScore" : 89 }, { "StudentName" : "David", "StudentMathScore" : 76 }, { "StudentName" : "Bob", "StudentMathScore" : 97 } ] }
ต่อไปนี้เป็นแบบสอบถามเพื่อค้นหาค่าสูงสุดจากอาร์เรย์ย่อยในเอกสาร
> db.findHighestValueDemo.aggregate([ ... {$project:{"StudentDetails.StudentName":1, "StudentDetails.StudentMathScore":1}}, ... {$unwind:"$StudentDetails"}, ... {$sort:{"StudentDetails.StudentMathScore":-1}}, ... {$limit:1} ... ]).pretty();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้
{ "_id" : 10001, "StudentDetails" : { "StudentName" : "John", "StudentMathScore" : 98 } }