zoukankan      html  css  js  c++  java
  • 【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

  • 相关阅读:
    PHP之目录遍历
    PHP之验证码
    PHP之验证码
    PHP之异常处理模式
    PHP之pdo的预处理模式
    PHP之PDO
    PHP之cookie和session
    PHP之MVC
    单例模式
    ThreadLocal
  • 原文地址:https://www.cnblogs.com/colipso/p/4431343.html
Copyright © 2011-2022 走看看