สมมติว่าเราจำเป็นต้องค้นหาเอกสารที่มีค่ามากกว่าค่าที่ระบุ สำหรับสิ่งนี้ ให้ใช้เครื่องหมายจุดในเอกสารที่ซ้อนกันและตั้งค่าเงื่อนไขด้วย $gt.
ให้เราดูตัวอย่างและสร้างคอลเลกชันที่มีเอกสาร -
> db.demo688.insert( ... { ... information:{id:1,details:[ ... {otherDetails:{ ... values:75 ... } ... } ... ] ... } ... } ... ) WriteResult({ "nInserted" : 1 }) > db.demo688.insert({ ... information: ... { ... id:2, ... details: ... [ ... {otherDetails:{ ... values:78 ... } ... } ... ] ... } ... } ... ) WriteResult({ "nInserted" : 1 })
แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -
> db.demo688.find();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5ea57986a7e81adc6a0b3965"), "information" : { "id" : 1, "details" : [ { "otherDetails" : { "values" : 75 } } ] } } { "_id" : ObjectId("5ea5799ca7e81adc6a0b3966"), "information" : { "id" : 2, "details" : [ { "otherDetails" : { "values" : 78 } } ] } }
ต่อไปนี้เป็นแบบสอบถามเพื่อเข้าถึงเอกสารที่ซ้อนกัน MongoDB -
> db.demo688.find({"information.details.otherDetails.values":{$gt:75}});
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5ea5799ca7e81adc6a0b3966"), "information" : { "id" : 2, "details" : [ { "otherDetails" : { "values" : 78 } } ] } }