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

非(聚合)

在本页

  • 定义
  • 行为
  • 示例
$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 }

返回

不等于