ให้เราสร้างคอลเลกชันที่มีเอกสาร -
> db.demo411.aggregate( ... [ ... {$project : { ... _id : 0, ... Information : {$map : {input : "$Information", as : "out", in : ["$$out.Name1", "$$out.Name2"]}} ... } ... } ... ] ... ) { "Information" : [ [ "Chris", "David" ], [ "John", "John" ] ] } > db.demo412.insertOne( ... { ... "Information1" : [ ... { ... "Information2" : [ ... "John", ... "David" ... ] ... }, ... { ... "Information2" : [ ... "Mike" ... ] ... } ... ] ... } ... ); { "acknowledged" : true, "insertedId" : ObjectId("5e70f38b15dc524f70227683") }
แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -
> db.demo412.find();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5e70f38b15dc524f70227683"), "Information1" : [ { "Information2" : [ "John", "David" ] }, { "Information2" : [ "Mike" ] } ] }
ต่อไปนี้เป็นแบบสอบถามเพื่อปรับปรุงอาร์เรย์ของสตริงที่ซ้อนกันภายในอาร์เรย์ของวัตถุใน MongoDB -
> db.demo412.updateMany( ... { _id: ObjectId("5e70f38b15dc524f70227683") }, ... { $pull : {'Information1.$[].Information2' : "Mike" } } ... ); { "acknowledged" : true, "matchedCount" : 1, "modifiedCount" : 1 }
แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -
> db.demo412.find();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : ObjectId("5e70f38b15dc524f70227683"), "Information1" : [ { "Information2" : [ "John", "David" ] }, { "Information2" : [ ] } ] }