码迷,mamicode.com
首页 > 编程语言 > 详细

group by分组后对组内数据进行排序

时间:2019-09-07 12:57:58      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:https   lis   class   art   order by   english   esc   rom   create   

查询 每个班级英语成绩最高的前两名的记录

原文:https://www.cnblogs.com/hxfcodelife/p/10226934.html

select a.Classid,a.English from
(select Classid,English,row_number() over(partition by Classid order by English desc) as n
from CJ) a
where n<=2

另外一种情况:取组内最新的数据
select max(create_time),order_id from ycej_loan_info where order_id <> ‘‘ group by order_id

group by分组后对组内数据进行排序

标签:https   lis   class   art   order by   english   esc   rom   create   

原文地址:https://www.cnblogs.com/sanhao/p/11479862.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!