mongodb使用小点

查询某个字段存在的语句

db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":true}})

查询某个字段不存在的语句 

db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":false}})

相关推荐