sql >> Database teknologi >  >> NoSQL >> MongoDB

Forespørgsel efter en række arrays i MongoDB

Interessant spørgsmål. Dette vil gøre det trick

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

$elemMatch bruges til at kontrollere, om et element i et array matcher det angivne match expression.so indlejret $elemMatch vil gå dybere ind i indlejrede arrays

Testdata   

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. Hvordan kan jeg implementere tilladelser på feltniveau til MongoDB?

  2. Indstil redis nøgle/værdi med camel-redis

  3. Indstilling af forårssession på redis-server

  4. Ringer til Redis zuunionstore fra Lua med variable NØGLER