日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

【MongoDB】嵌套数组查询方案

發布時間:2025/5/22 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【MongoDB】嵌套数组查询方案 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

From:http://stackoverflow.com/questions/12629692/querying-an-array-of-arrays-in-mongodb

數據

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

查詢語句:

Interesting question, This will do the trick

db.multiArr.find({'Keys':{$elemMatch:{$elemMatch:{$in:['carrot']}}}})
$elemMatch used to check if an element in an array matches the specified match expression. so nested $elemMatch will go deeper into nested arrays

?

補充:

http://stackoverflow.com/questions/17360423/getting-a-dictionary-inside-a-list-by-key-in-mongodb-mongoengine

轉載于:https://www.cnblogs.com/colipso/p/4431343.html

總結

以上是生活随笔為你收集整理的【MongoDB】嵌套数组查询方案的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。