免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3556 | 回复: 7
打印 上一主题 下一主题

一个group by 的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-07-11 17:31 |只看该作者 |倒序浏览
有这么一个表
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 |
+---------+---------+------------+
应该怎么实现呢?

论坛徽章:
0
2 [报告]
发表于 2007-07-12 11:43 |只看该作者
select * from (select * from test_group order by times desc) test group by user_id
:wink: :wink:

论坛徽章:
0
3 [报告]
发表于 2007-07-12 14:10 |只看该作者
select * from test_group where times in( select max(times) from test_group group by user_id)

论坛徽章:
0
4 [报告]
发表于 2007-07-12 16:35 |只看该作者
mysql> select user_id, max(times), other from test_group group by user_id;

我的想法比较笨

论坛徽章:
0
5 [报告]
发表于 2007-07-13 10:38 |只看该作者

上面的都不对啦:

3楼的比较接近但是没有考虑到times重复的情况

用这个
SELECT *
FROM `test_group` a, (
    SELECT `user_id` , max( `times` ) AS `times`
    FROM `test_group`
    GROUP BY `user_id`
)b
WHERE a.`user_id` = b.`user_id`
AND a.`times` = b.`times`

论坛徽章:
0
6 [报告]
发表于 2007-11-09 16:43 |只看该作者
我觉得LZ的说法有问题。
我想以user_id分组,取出每个user_id的最新的数据(也就是times最大)



最大的数据,不一定是最新的。


1        12345        a
1        123459        aaa
1        1234599        bdfsaaa
2        3339        3zsxfd
2        33399        ffd23zsxfd
2        3339        repeat
0        0        \N

论坛徽章:
0
7 [报告]
发表于 2007-11-09 16:44 |只看该作者
这种问题,加一个时间字段很容易就解决了。

论坛徽章:
0
8 [报告]
发表于 2007-11-22 17:53 |只看该作者
2 楼方法不是可以了吗 !!!!!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP