mysql的disctinct group by 按id大小排序查询不重复记录

用mysql的group by解决不重复记录的问题,

假设一个表:

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

猜你喜欢

转载自fanguanghui.iteye.com/blog/1442631
今日推荐