Mongodb中查询某个字段不存在或者为null

1、查询集合c中y的值为null或者不存在

db.c.find({y: null})

2、查询集合c中y的值为null,(仅返回y的值为null的数据,不会返回不存在的)

db.c.find({“y”: {$type : 10}})
$type为10表示Null

或者

db.c.find({“y”: {“$in”: [null], “$exists”: true}})

3、查询集合c中y的值不存在(不会返回y的值为null的数据)

db.c.find({“y”: {$exists: false}})

4、查询集合c中y的值不为null且存在的记录

db.c.find({“y”: {"$ne": null, $exists: true}})

或者

db.c.find({“y”: {"$ne":null}})

你可能感兴趣的:(#,java,#,MongoDB,mongodb)