54

たとえば、このようなドキュメントがあります。

"ID" : "fruit1",
"Keys" : [["apple", "carrot", "banana"]]

Keys="carrot"をクエリするにはどうすればよいですか。次の構文はいずれも機能しません。

db.myColl.results.find({ "Keys" : "carrot" });
db.myColl.results.find({ "Keys" : [["carrot"]] });

以下は機能しますが、役に立ちません。

db.myColl.results.find({ "Keys" : [["apple", "carrot", "banana]]});

このクエリへのポインタが役立ちます。ありがとう。

4

2 に答える 2

148

興味深い質問、これはトリックを行います

 db.multiArr.find({'Keys':{$elemMatch:{$elemMatch:{$in:['carrot']}}}})

$elemMatch配列内の要素が指定された一致式と一致するかどうかを確認するために使用されます。そのため、ネスト$elemMatchされた配列はネストされた配列に深く入ります

テストデータ    

db.multiArr.insert({"ID" : "fruit1","Keys" : [["apple", "carrot", "banana"]]})
db.multiArr.insert({"ID" : "fruit2","Keys" : [["apple", "orange", "banana"]]})


db.multiArr.find({'Keys':{$elemMatch:{$elemMatch:{$in:['carrot']}}}})
{ "_id" : ObjectId("506555212aeb79b5f7374cbf"), "ID" : "fruit1", "Keys" : [ [ "apple", "carrot", "banana" ] ] }

db.multiArr.find({'Keys':{$elemMatch:{$elemMatch:{$in:['banana']}}}})

{ "_id" : ObjectId("506555212aeb79b5f7374cbf"), "ID" : "fruit1", "Keys" : [ [ "apple", "carrot", "banana" ] ] }
{ "_id" : ObjectId("5065587e2aeb79b5f7374cc0"), "ID" : "fruit2", "Keys" : [ [ "apple", "orange", "banana" ] ] }
于 2012-09-28T08:05:34.510 に答える
3

最初の位置のデータの配列を検索する場合は、参照インデックスとして0を使用して、ネストされた配列のデータを取得します。

db.getCollection('routes').find({"routeId" : 12,'routes._id':ObjectId("598da27a713f3e6acd72287f"),'routes.0.stops.0.orders.0._id':ObjectId("598da27a713f3e6acd722887")})
于 2017-08-18T10:53:50.513 に答える