OData按最大值和字段过滤

时间:2018-03-03 12:31:15

标签: odata

数据集包含具有以下键的记录:userID,期间

是否可以按period最大 points查询一条记录。

示例方案

数据集

[
 /* period: 2016-01-01 */
 { userID: 1, period: '2016-01-01', points: 100},
 { userID: 1, period: '2016-01-01', points: 200},
 { userID: 1, period: '2016-01-01', points: 300},

 /* period: 2016-01-02 */
 { userID: 1, period: '2016-01-02', points: 50},
 { userID: 1, period: '2016-01-02', points: 70},
 { userID: 1, period: '2016-01-02', points: 10},

 /* period: 2016-01-03 */
 { userID: 1, period: '2016-01-03', points: 80},
 { userID: 1, period: '2016-01-03', points: 20},
 { userID: 1, period: '2016-01-03', points: 0},
]

查询结果

这些是所需的查询结果。 每个时段一个记录该时段的最高点数

 { userID: 1, period: '2016-01-02', points: 300},
 { userID: 1, period: '2016-01-03', points: 70},
 { userID: 1, period: '2016-01-04', points: 80},

1 个答案:

答案 0 :(得分:1)

这可以通过OData Extension for Data Aggregation Version 4.0中定义的$apply查询选项来实现,假设要查询的实体名为PointHistory

GET PointHistory?$apply=groupby((period),topcount(1,points))

这将按period对记录进行分组,按points对每个组中的记录进行排序,然后返回每个组的最高记录。