说,我有这样的文件..
"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]]});
任何指向此查询的指针都会有所帮助。感谢。
答案 0 :(得分:119)
有趣的问题,这将解决问题
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" ] ] }
答案 1 :(得分:1)
如果要查找第一个位置数据的数组,请使用0作为参考索引来获取嵌套数组中的数据。
db.getCollection('routes').find({"routeId" : 12,'routes._id':ObjectId("598da27a713f3e6acd72287f"),'routes.0.stops.0.orders.0._id':ObjectId("598da27a713f3e6acd722887")})