示例代码
假设集合 price
有如下记录:
{ "_id": 1, "min": 10, "max": 100 }
{ "_id": 2, "min": 60, "max": 80 }
{ "_id": 3, "min": 30, "max": 50 }
求 min
小于 40 且 max
大于 60 的记录。
const $ = db.command.aggregate
db.collection('price').aggregate()
.project({
fullfilled: $.or([$.lt(['$min', 30]), $.gt(['$max', 60])])
})
.end()
返回结果如下:
{ "_id": 1, "fullfilled": true }
{ "_id": 2, "fullfilled": false }
{ "_id": 3, "fullfilled": true }
文字描述小于40,但实际是30. 然后第三个记录应该是false吧?读不懂
or不是任意一个表达式返回true 它就是true吗?感觉变成了and的关系了
官方文档写错了