$and(聚合)
定义
行为
除了false
布尔值外,$and
还会将以下值评估为false
:null
、0
和undefined
。$and
将所有其他值评估为true
,包括非零数值和数组。
示例 | 结果 |
---|---|
{ $and: [ 1, "green" ] } | true |
{ $and: [ ] } | true |
{ $and: [ [ null ], [ false ], [ 0 ] ] } | true |
{ $and: [ null, true ] } | false |
{ $and: [ 0, true ] } | false |
错误处理
为了允许查询引擎优化查询,$and
以以下方式处理错误
如果提供给
$and
的任何表达式在单独评估时会导致错误,则包含该表达式的$and
可能会引发错误,但并非一定会引发错误。提供给
$and
的第一个表达式之后提供的表达式可能会引发错误,即使第一个表达式评估为false
。
例如,以下查询如果$x
为0
,则始终产生错误
db.example.find( { $expr: { $eq: [ { $divide: [ 1, "$x" ] }, 3 ] } } )
以下查询包含多个提供给$and
的表达式,如果存在任何文档中$x
为0
,则可能产生错误
db.example.find( { $and: [ { x: { $ne: 0 } }, { $expr: { $eq: [ { $divide: [ 1, "$x" ] }, 3 ] } } ] } )
示例
使用这些文档创建一个 库存
集合
db.inventory.insertMany([ { "_id" : 1, "item" : "abc1", description: "product 1", qty: 300 }, { "_id" : 2, "item" : "abc2", description: "product 2", qty: 200 }, { "_id" : 3, "item" : "xyz1", description: "product 3", qty: 250 }, { "_id" : 4, "item" : "VWZ1", description: "product 4", qty: 300 }, { "_id" : 5, "item" : "VWZ2", description: "product 5", qty: 180 } ])
此操作使用 $and
操作符来确定 数量
是否大于100 并且 小于 250
db.inventory.aggregate( [ { $project: { item: 1, qty: 1, result: { $and: [ { $gt: [ "$qty", 100 ] }, { $lt: [ "$qty", 250 ] } ] } } } ] )
操作返回这些结果
{ "_id" : 1, "item" : "abc1", "qty" : 300, "result" : false } { "_id" : 2, "item" : "abc2", "qty" : 200, "result" : true } { "_id" : 3, "item" : "xyz1", "qty" : 250, "result" : false } { "_id" : 4, "item" : "VWZ1", "qty" : 300, "result" : false } { "_id" : 5, "item" : "VWZ2", "qty" : 180, "result" : true }