查询某个字段存在的语句
db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":true}})
查询某个字段不存在的语句
db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":false}})
查询某个字段存在的语句
db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":true}})
查询某个字段不存在的语句
db.getCollection(‘tableName‘).find({"RouteInfo":{"$exists":false}})