mongodb数据库一个特定判断属性必须存在的查询

-- 查询x、b属性必须存在,attr字段=3的记录。
> db.c1.save({x:null})
> db.c1.save({b:2})
> db.c1.save({b:2, x:111})
> db.c1.save({b:2, x:111, attr:3})
--
> db.c1.find({x:{'$exists':true},b:{'$exists':true}, attr:3});
{ "_id" : ObjectId("4c7f1ed1ad1da0b78ea376a4"), "b" : 2, "x" : 111, "attr" : 3 }
>
【注释】:有结果了,能查到。
> db.c1.find({x:{'$exists':true},b:{'$exists':true}, attr:2});
>
【注释】:没有结果。

你可能感兴趣的:(c,mongodb,数据库,null)