oracle如何取分组最大值记录

2024-12-15 22:53:37
推荐回答(1个)
回答1:

max函数本身也是聚合函数,可以直接用的。
比如select max(num) from table group by id
这就是每个id分组中最大的num字段。