AggregateCommand.max(value: Expression): Object

支持端:小程序 2.7.4, 云函数 0.8.1, Web

聚合操作符。返回一组数值的最大值。

参数

value: Expression

表达式

返回值

Object

API 说明

max 的语法如下:

  1. db.command.aggregate.max(<表达式>)

表达式是形如 $ + 指定字段 的字符串。

示例代码

假设集合 students 的记录如下:

  1. { "group": "a", "name": "stu1", "score": 84 }
  2. { "group": "a", "name": "stu2", "score": 96 }
  3. { "group": "b", "name": "stu3", "score": 80 }
  4. { "group": "b", "name": "stu4", "score": 100 }

借助 max 可以统计不同组( group )中成绩的最高值,代码如下:

  1. const $ = db.command.aggregate
  2. db
  3. .collection('students')
  4. .aggregate()
  5. .group({
  6. _id: '$group',
  7. maxScore: $.max('$score')
  8. })
  9. .end()

返回的数据结果如下:

  1. { "_id": "b", "maxScore": 100 }
  2. { "_id": "a", "maxScore": 96 }
  3. ```.