AggregateCommand.max(value: Expression): Object
聚合操作符。返回一组数值的最大值。
参数
value: Expression
表达式
返回值
Object
API 说明
max
的语法如下:
db.command.aggregate.max(<表达式>)
表达式是形如 $ + 指定字段
的字符串。
示例代码
假设集合 students
的记录如下:
{ "group": "a", "name": "stu1", "score": 84 }
{ "group": "a", "name": "stu2", "score": 96 }
{ "group": "b", "name": "stu3", "score": 80 }
{ "group": "b", "name": "stu4", "score": 100 }
借助 max
可以统计不同组( group
)中成绩的最高值,代码如下:
const $ = db.command.aggregate
db
.collection('students')
.aggregate()
.group({
_id: '$group',
maxScore: $.max('$score')
})
.end()
返回的数据结果如下:
{ "_id": "b", "maxScore": 100 }
{ "_id": "a", "maxScore": 96 }
```.