文章目录
- MongoDB聚合运算符:$lt
- 语法
- 举例
MongoDB聚合运算符:$lt
$lt
聚合运算符用于比较两个值,如果第一个小于第二个,返回true
;如果第一个小于等于第二个,返回false
。
语法
{ $lt: [ <expression1>, <expression2> ] }
$lt
可以用来比较任何类型的值,针对不同的类型使用特定的BSON比较顺序。
举例
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 }
下面的聚合操作使用$lt
运算符来判断qty
是否小于250
:
db.inventory.aggregate([{$project:{item: 1,qty: 1,qtyLt250: { $lt: [ "$qty", 250 ] },_id: 0}}]
)
操作返回下面的结果:
{ "item" : "abc1", "qty" : 300, "qtyLt250" : false }
{ "item" : "abc2", "qty" : 200, "qtyLt250" : true }
{ "item" : "xyz1", "qty" : 250, "qtyLt250" : false }
{ "item" : "VWZ1", "qty" : 300, "qtyLt250" : false }
{ "item" : "VWZ2", "qty" : 180, "qtyLt250" : true }