码迷,mamicode.com
首页 > 其他好文 > 详细

获取分组后取某字段最大一条记录(求每个类别中最大的值的列表)

时间:2019-12-18 10:49:26      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:pre   group   number   类别   index   dex   esc   记录   HERE   

获取分组后取某字段最大一条记录
方法一:(效率最高)

select * from test as a 
where typeindex = (select max(b.typeindex) 
from test as b 
where a.type = b.type );

 


方法二:(效率次之)

select 
a.* from test a,
(select type,max(typeindex) typeindex from test group by type) b 
where a.type = b.type and a.typeindex = b.typeindex order by a.type 

 


方法三:

select a.* from test a inner join (select type , max(typeindex) typeindex from test group by type) b on a.type = b.type and a.typeindex = b.typeindex order by a.type

 


方法四:(效率最低)

select * from
(
select *,ROW_NUMBER() OVER(PARTITION BY type ORDER BY typeindex DESC) as num
from test
) t
where t.num = 1

获取分组后取某字段最大一条记录(求每个类别中最大的值的列表)

标签:pre   group   number   类别   index   dex   esc   记录   HERE   

原文地址:https://www.cnblogs.com/Steven5007/p/12058416.html

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