文档菜单
文档首页
/
MongoDB 手册
/ / /

$and(聚合)

本页内容

  • 定义
  • 行为
  • 错误处理
  • 示例
$and

评估一个或多个表达式,如果所有表达式都为true或没有参数运行表达式,则返回true。否则,$and返回false

$and语法

{ $and: [ <expression1>, <expression2>, ... ] }

有关表达式的更多信息,请参阅表达式运算符.

除了false布尔值外,$and还会将以下值评估为falsenull0undefined$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

例如,以下查询如果$x0,则始终产生错误

db.example.find( {
$expr: { $eq: [ { $divide: [ 1, "$x" ] }, 3 ] }
} )

以下查询包含多个提供给$and的表达式,如果存在任何文档中$x0,则可能产生错误

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 }

返回

$allElementsTrue