码迷,mamicode.com
首页 > 其他好文 > 详细

【mongo】一个字段有两个条件进行查询

时间:2019-09-19 19:26:37      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:tool   int   null   字段   and   类型   反向   nbsp   订单   

条件:查询status:2,has_pay:true,amount:不等于0,type:A或者空(type类型有4个,分别是A、B、C、以及部分字段为空)的订单
 

反向查询:

db.order.find({ "status": NumberInt(2), "has_pay": true, "amount": { $ne: NumberInt(0) },$and: [ { "type":{ $ne: "C" } }, { "type": { $ne: "B"} } ]})

或者

db.order.find({ "status": NumberInt(2), "has_pay": true, "amount": { $ne: NumberInt(0) }, $nor: [ { "type": "C" }, { "type": "B" } ] }) 

 

正向查询:

db.order.find({ "status": NumberInt(2), "has_pay": true, "amount": { $ne: NumberInt(0) }, $or: [ { "type": "A" }, { "type": null } ] })

 

【mongo】一个字段有两个条件进行查询

标签:tool   int   null   字段   and   类型   反向   nbsp   订单   

原文地址:https://www.cnblogs.com/Calinayc/p/11551762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!