mongo查询常用小干货
**1、查询 base中的snsId字段等于"wby"的文档:
db.getCollection('account').find({"base.snsId":"wby"})
2、查询 base中的snsId字段包含"wby"的文档:
db.getCollection('account').find({"base.snsId":/wby/})
3、查询 base中的snsId字段以"wby"开头的文档:
db.getCollection('account').find({"base.snsId":/^wby/})
4、查询 base中的snsId字段以"wby"结尾的文档:
db.getCollection('account').find({"base.snsId":/wby$/})
5、查询 base中的snsId字段为null或为空字符串的文档并计数:
(使用"$in:[]" 的方法)
db.getCollection('account').find({"base.snsId":{$in:[null,""]}}).count()
6、查询 base中的snsId字段等于"wby"并且只返回"_id"字段:
(查询指定列:“,{”_id":1}“指定查询返回的列”_id",指定返回:1;指定不返回:0)
db.getCollection('account').find({"base.snsId":"wby"},{"_id":1})
7、查询 base中的snsId字段等于"wby"并且按"_id"倒序排列:
(“.sort({”_id":-1})";正序:1;倒序:-1)
db.getCollection('account').find({"base.snsId":/^wby/},{"_id":1}).sort({"_id":-1})
8、in查询,并返回指定字段
db.getCollection('account').find({"_id":{$in:[1,3]}},{"_id":1,"base.platformId":1})
9、字段不为null查询
db.getCollection('account').find({"feature.trinity_latest_order_brand":{$exists:true},"feature.brand_industry_category_list":{$exists:true}})
**