Để trích xuất phần tử cụ thể trong MongoDB, bạn có thể sử dụng toán tử $ elemMatch. Trước tiên, hãy để chúng tôi tạo một bộ sưu tập với các tài liệu -
> 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" } ] } ] } ] }
Hiển thị tất cả các tài liệu từ một bộ sưu tập với sự trợ giúp của phương thức find () -
> db.particularElementDemo.find().pretty();
Điều này sẽ tạo ra kết quả sau -
{ "_id" : 100, "GroupId" : "Group-1", "UserDetails" : [ { "UserName" : "John", "UserOtherDetails" : [ { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserEmailId" : "[email protected]", "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] }
Sau đây là truy vấn để trích xuất phần tử cụ thể trong MongoDB trong các mảng lồng nhau -
> db.particularElementDemo.find( { 'UserDetails':{ $elemMatch:{ 'UserOtherDetails':{ $elemMatch:{ 'UserFriendName':{ $elemMatch: {"Name" : "Robert" } } } } } } },{"UserDetails.UserOtherDetails.UserFriendName.Name":1} );
Điều này sẽ tạo ra kết quả sau -
{ "_id" : 100, "UserDetails" : [ { "UserOtherDetails" : [ { "UserFriendName" : [ { "Name" : "Chris" } ] }, { "UserFriendName" : [ { "Name" : "Robert" } ] } ] } ] }