在MongoDB中查询数组数组

说,我有这样的文件..

"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]]}); 

任何指向这个查询的指针都会有帮助。 谢谢。

有趣的问题,这将是诀窍

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

$elemMatch用于检查数组中的元素是否与指定的匹配expression式匹配。 所以嵌套$elemMatch将深入嵌套数组

testing数据

 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" ] ] } 

如果要查找第一个位置数据的数组,请使用0作为参考索引来获取嵌套数组中的数据。

 db.getCollection('routes').find({"routeId" : 12,'routes._id':ObjectId("598da27a713f3e6acd72287f"),'routes.0.stops.0.orders.0._id':ObjectId("598da27a713f3e6acd722887")})