ネストされた配列内のMongoDBの特定の要素を抽出しますか?
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" } ] } ] } ] }
-
ネストされた配列をソートするMongoDBクエリ?
MongoDBでネストされた配列を並べ替えるには、$sortを使用します。ドキュメントを使用してコレクションを作成しましょう- > db.demo505.insertOne( ... { ... "details": [ ... { ... Name:"Chris", ... "Score":58 ... }, { ... ...  
-
MongoDB配列の要素を削除するにはどうすればよいですか?
要素を削除するには、MongoDBで$ pullを更新して、使用します。 $ pull演算子は、既存の配列から、指定された条件に一致する1つまたは複数の値のすべてのインスタンスを削除します。 まず、ドキュメントを使用してコレクションを作成しましょう- db.demo541.insertOne({"software":{"services":["gmail","facebook","yahoo"]}});{ "acknowledged" : true