赞
踩
参考文档
$in https://docs.mongodb.com/manual/reference/operator/query/in/
$nin https://docs.mongodb.com/manual/reference/operator/query/nin/
工作中用到了 $in $nin , 做个记录
$in 用法:
{field:{$in:[<value1>,<value2>...]}}
查询字段在数组中的数量]
eg: db.getCollection('sid_info').find({'login_status':'0','status':0,ttl:{$in:['1','3']}}).count()
$nin 用法:
db.getCollection('sid_info').find({'login_status':'0','status':0,ttl:{$nin:['1','3']}}).count()
查询会得到两种结果:
a. ttl不在数组之中
b. ttl字段不存在
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。