- 论坛徽章:
- 0
|
有这么一个表
CREATE TABLE `test_group`(
`user_id` int(10) not null default 0,
`times` int(10) unsigned not null default 0,
`other` varchar(20)
)
数据为
mysql> select * from test_group;
+---------+---------+------------+
| user_id | times | other |
+---------+---------+------------+
| 1 | 12345 | a |
| 1 | 123459 | aaa |
| 1 | 1234599 | bdfsaaa |
| 2 | 3339 | 3zsxfd |
| 2 | 33399 | ffd23zsxfd |
+---------+---------+------------+
我想以user_id分组,取出每个user_id的最新的数据(也就是times最大)
用这条语句只能得到此结果
mysql> select * from test_group group by user_id;
+---------+-------+--------+
| user_id | times | other |
+---------+-------+--------+
| 1 | 12345 | a |
| 2 | 3339 | 3zsxfd |
+---------+-------+--------+
我想要的结果是
+---------+---------+------------+
| user_id | times | other |
+---------+---------+------------+
| 1 | 1234599 | bdfsaaa |
| 2 | 33399 | ffd23zsxfd |
+---------+---------+------------+
应该怎么实现呢? |
|