可以在数组键上查询mongodb吗?

时间:2011-05-18 13:04:13

标签: mongodb nosql

我的表有一个由字符串索引的数组,我希望所有与该字符串匹配的记录,无论值是什么。例如,获取所有记录,其中id1为fill:

var a = {
   type: "Information",
   ids: {
     'id1' : '123'
     'id2' : '456'
   }
 };


var b = {
   type: "Information",
   ids: {
     'id1' : '789'
   }
 };

有可能用mongodb做到这一点吗?

2 个答案:

答案 0 :(得分:8)

您可以使用$ exists:

> db.things.insert({'type': 'Information', 'ids':{'id1': 123, 'id2': 456}})
> db.things.insert({'type': 'Information', 'ids':{'id1': 746, 'id2': 456}})
> db.things.insert({'type': 'Information', 'ids':{'id2': 456, 'id3': 936}})

> db.things.find({'ids.id1': {'$exists': true}})
{ "_id" : ObjectId("4dd3c706938307861ed610dd"), "type" : "Information", "ids" : { "id1" : 123, "id2" : 456 } }
{ "_id" : ObjectId("4dd3c7a1938307861ed610de"), "type" : "Information", "ids" : { "id1" : 746, "id2" : 456 } }

答案 1 :(得分:2)

感谢#mondodb频道中的scoates,可以使用exists函数执行此操作:http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%24exists

db.Information.find({"ids.id1":{$exists:true}});