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 回答