在MongoDB中查询数组的数组

yyyllmsg  于 2023-04-05  发布在  Go
关注(0)|答案(3)|浏览(162)

我有一份这样的文件。

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

任何指向此查询的指针都将有所帮助。谢谢。

2ekbmq32

2ekbmq321#

有意思的问题,这个就行了

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

des4xlb02#

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

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

tf7tbtn23#

“商户标识”:[ {“id”:“63fa3cd15595d06245a950ed”},{“id”:“63fa3cd15595d06245a950ed”} ],

{商家ID:{ $elemMatch:联系我们

相关问题