Docs 菜单

$not(聚合)

在此页面上

$not

计算布尔值并返回相反的布尔值;即当传递计算结果为 true 的表达式时,$not 将返回 false;当传递计算结果为 false 的表达式时,$not 将返回 true

$not 采用以下语法:

{ $not: [ <expression> ] }

有关表达式的更多信息,请参阅表达式

除了 false 布尔值外,$not 还将以下值计算为 falsenull0undefined 值。$not 将所有其他值(包括非零数值和数组)计算为 true

例子
结果

{ $not: [ true ] }

false

{ $not: [ [ false ] ] }

false

{ $not: [ false ] }

true

{ $not: [ null ] }

true

{ $not: [ 0 ] }

true

考虑包含以下文档的 inventory 集合:

{ "_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 }

下面的操作使用 $not 操作符来判断 qty 是否不大于 250

db.inventory.aggregate(
[
{
$project:
{
item: 1,
result: { $not: [ { $gt: [ "$qty", 250 ] } ] }
}
}
]
)

操作返回以下结果:

{ "_id" : 1, "item" : "abc1", "result" : false }
{ "_id" : 2, "item" : "abc2", "result" : true }
{ "_id" : 3, "item" : "xyz1", "result" : true }
{ "_id" : 4, "item" : "VWZ1", "result" : false }
{ "_id" : 5, "item" : "VWZ2", "result" : true }

在此页面上