码迷,mamicode.com
首页 > 数据库 > 详细

mysql分组查询获取组内某字段最大的记录

时间:2015-04-02 18:05:26      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

id  sid  cid 
1   1    1
2   1    2
3   2    1

以sid分组,最后取cid最大的那一条,以上要取第2、3条

1
方法一: 2 select * from (select * from table order by cid desc) as a group by a.sid 3 4 方法二: 5 select a.* from table as a where cid = (select max(cid) from table where a.sid = sid) 6 7 方法三: 8 select a.* from table as a where not exists (select * from table where sid=a.sid and cid>a.cid) 9 10 方法四: 11 select a.* from table as a where exists (select count(*) from table where sid=a.sid and cid > a.cid having count(*)=0)

 

注:以上内容收集自网上

 

mysql分组查询获取组内某字段最大的记录

标签:

原文地址:http://www.cnblogs.com/thingk/p/4387380.html

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