Mysql按字段分组取最大值记录
Mysql按字段分组取最大值记录
文章图片
要求:获得
按table1_id分组,并且age最大的记录信息,即2、3、5条 方法一: select * from (select * from table2 order by age desc) as a group by a.table1_id 方法二: select a.* from table2 as a where age = (select max(age) from table2 where a.table1_id=table1_id) 方法三: select a.* from table2 as a where not exists (select * from table2 where table1_id=a.table1_id and age>a.age) 方法四: select a.* from table2 as a where exists (select count(*) from table2 where table1_id=a.table1_id and age>a.age having count(*)=0) 参考资源: http://blog.sina.com.cn/s/blog_8155e74d0101g1pl.html 【Mysql按字段分组取最大值记录】转载于:https://www.cnblogs.com/zhangjianqiang/articles/6679093.html
推荐阅读
- 2021-02-17|2021-02-17 小儿按摩膻中穴-舒缓咳嗽
- 牛人进化+|牛人进化+ 按自己的意愿过一生
- 「按键精灵安卓版」关于全分辨率脚本的一些理解(非游戏app)
- py连接mysql
- 2019-01-18Mysql中主机名的问题
- MySql数据库备份与恢复
- mysql|InnoDB数据页结构
- mysql中视图事务索引与权限管理
- MYSQL主从同步的实现
- MySQL数据库的基本操作