On this page
$not (aggregation)
在本页面
Definition
$not具有以下语法:
{ $not: [ <expression> ] }
有关表达式的更多信息,请参见Expressions。
Behavior
除了false
布尔值外,$not还将以下值评估为false
:null
,0
和undefined
值。 $not会将所有其他值评估为true
,包括非零数值和数组。
Example | Result | |
---|---|---|
{ $not: [ true ] } |
false |
|
{ $not: [ [ false ] ] } |
false |
|
{ $not: [ false ] } |
true |
|
{ $not: [ null ] } |
true |
|
{ $not: [ 0 ] } |
true |
Example
考虑包含以下文档的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 }