หากต้องการแยกองค์ประกอบเฉพาะใน MongoDB คุณสามารถใช้ตัวดำเนินการ $elemMatch ให้เราสร้างคอลเลกชันที่มีเอกสารก่อน -
> db.particularElementDemo.insertOne( { "GroupId" :"Group-1", "UserDetails" : [ { "UserName" : "John", "UserOtherDetails" : [ { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] } ); { "acknowledged" : true, "insertedId" : 100 } > db.particularElementDemo.find().pretty(); { "_id" : 100, "GroupId" : "Group-1", "UserDetails" : [ { "UserName" : "John", "UserOtherDetails" : [ { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] }
แสดงเอกสารทั้งหมดจากคอลเล็กชันโดยใช้วิธี find() -
> db.particularElementDemo.find().pretty();
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : 100, "GroupId" : "Group-1", "UserDetails" : [ { "UserName" : "John", "UserOtherDetails" : [ { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] }
ต่อไปนี้เป็นแบบสอบถามเพื่อแยกองค์ประกอบเฉพาะใน MongoDB ในอาร์เรย์ที่ซ้อนกัน -
> db.particularElementDemo.find( { 'UserDetails':{ $elemMatch:{ 'UserOtherDetails':{ $elemMatch:{ 'UserFriendName':{ $elemMatch: {"Name" : "Robert" } } } } } } },{"UserDetails.UserOtherDetails.UserFriendName.Name":1} );
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
{ "_id" : 100, "UserDetails" : [ { "UserOtherDetails" : [ { "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] }