来帮我看看这个mysql语句该怎么写!

php中文网
发布: 2016-06-23 13:28:12
原创
1037人浏览过

test
name      add           num

a               wefsv         3

b               asdf          4
b               wers         9
b               w1rs         10

as             asdf          11
as             wers         12
as            w3rs         13

例如上面这个表,我需要用select * from test......

来选出如下结果(每个name中num最大的那个,只要一行,其它不管!)
a               wefsv         3
b               w1rs         10
as            w3rs         13

再多此一问,如果要选择2行怎么办?

b               wers         9
b               w1rs         10

as             wers         12
as            w3rs         13

a               wefsv         3

AI帮个忙
AI帮个忙

多功能AI小工具,帮你快速生成周报、日报、邮、简历等

AI帮个忙 55
查看详情 AI帮个忙

回复讨论(解决方案)

slect name,add,num from test group by add order by add desc

slect name,add,num from test group by add order by add desc


大神!不行啊!每个选出num不是最大的

每个name最大的一行
select *
from test a
where not exists (select 1 from test where name=a.name and num>a.num);

第一问

select * from (select * from test order by num desc) t group by name
登录后复制
name add   num a    wefsv 3 as   w3rs  13 b    w1rs  10 
登录后复制

第一问

select * from (select * from test order by num desc) t group by name
登录后复制
name add   num a    wefsv 3 as   w3rs  13 b    w1rs  10 
登录后复制

1 行

select * from test a where 0 =  (select count(*) from test where name = a.name and num > a.num)

2 行

select * from test a where 2 >  (select count(*) from test where name = a.name and num > a.num)

1 行

select * from test a where 0 =  (select count(*) from test where name = a.name and num > a.num)

2 行

select * from test a where 2 >  (select count(*) from test where name = a.name and num > a.num)



太牛了!昨天我弄了半小时都弄不出来!,谢谢!你这方法我感觉最好!

问题二

select * from test t where 2>(select count(*) from test where num>t.num and name=t.name);
登录后复制
name add   num a    wefsv 3 b    wers  9 b    w1rs  10 as   wers  12 as   w3rs  13 
登录后复制


所以问题一的又一写法是
select * from test t
 where  1>(select count(*) from test1 where num>t.num and name=t.name)

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号