请教一下mysql下有没有类似oracle的函数max over partition by的替代方案
发布网友
发布时间:2022-05-24 15:26
我来回答
共1个回答
热心网友
时间:2023-10-18 20:05
-- 有的,可以子查询 来完成 分组取前N条数据
select * from table_name a where
4>(select count(*) from table_name where gid=a.gid and col2>a.col2)
order by a.gid,a.col2 desc;