mysql中group by max如何提取最大的一条记录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中group by max如何提取最大的一条记录相关的知识,希望对你有一定的参考价值。
有个需求,一直没有解决,在google上找了半天,给出的方案没有一个能用了,最后鬼使神差搞定了。是这样的,假设一个表:
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id f_id value
1 2 a
2 2 b
3 5 c
4 9 c
5 9 a
6 6 d
id是主键,f_id是外键,我需要获得不重复的外键f_id的数据,如果用group by 或者distinct很容易搞定
select f_id from table group by f_id
select distinct f_id from table
但如果再想在结果中得到id值的话,不管怎么都会乱。比如我想在结果中用id进行排序,诸如”select distinct f_id, id from table order by id desc”完全白费。在google上看了大量的例子,发现需要在select中对id做手脚,让mysql知道除了f_id外,对id应该进行如何的操作。诸如Max, Min, Avg,Sun..都是可以的,于是变成以下的代码就搞定了……
select f_id, max(id) as id from table group by f_id order by id desc
搞定,网上有个文章很接近答案,但是他没有”as id”,导致在我的mysql中执行结果有误,呵呵。 参考技术A SELECT max(id), f_id FROM (
SELECT * FROM table WHERE 你的基本条件 ORDER BY id DESC
) AS g GROUP BY g.f_id;
困难在于尝试 参考技术B
楼上那个id 虽然是最大的,但是其他的数据并不是该ID对应的数据;
select * from(select * from smyl_push_msg t where t.inhabitant_id=1 order by t.created_time desc LIMIT 10000000000) s
group by s.msg_type
mysql 中order by 与group by的顺序
mysql 中order by 与group by的顺序 是:
select
from
where
group by
order by
注意:group by 比order by先执行,order by不会对group by 内部进行排序,如果group by后只有一条记录,那么order by 将无效。要查出group by中最大的或最小的某一字段使用 max或min函数。
例:
select sum(click_num) as totalnum,max(update_time) as update_time,count(*) as totalarticle from article_detail where userid =1 group by userid order by update_time desc
以上是关于mysql中group by max如何提取最大的一条记录的主要内容,如果未能解决你的问题,请参考以下文章
mysql在group by之后如何获取每一组中id最大的那一行