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

Posted Steven5007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取分组后取某字段最大一条记录(求每个类别中最大的值的列表)相关的知识,希望对你有一定的参考价值。

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

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

以上是关于获取分组后取某字段最大一条记录(求每个类别中最大的值的列表)的主要内容,如果未能解决你的问题,请参考以下文章

如何显示mysql分组中时间最大的一行记录

Oracle分组后取某列最大值的行数据

sql server 2008中如何取某字段最大值所在的一条数据(多个字段)

mysql查询分组中最大的值

oracle开展分组后,取出每组的前几条数据

MySQL 分组选出某值最大的一行数据(需要加 limit)