登录  /  注册

使用嵌套select子式 解决mysql不能叠加使用如max(sum())的问题

不言
发布: 2018-05-16 16:52:49
原创
3787人浏览过

网上也有解决方案 有的有瑕疵 有的较复杂(mysql没有分析函数,可以使用变量实现) s

elect sumScoreValue,studentid,studentName from sc_studentb, ( select sum (scoreValue) as sumScoreValue,studentid from sc_score group by studentid order by sumSc
登录后复制

网上也有解决方案 有的有瑕疵 有的较复杂(mysql没有分析函数,可以使用变量实现)

select sumScoreValue,studentid,studentName from sc_student b,  
(select sum(scoreValue) as sumScoreValue, studentid   
from sc_score group by studentid       
order by sumScoreValue desc limit 1) as a  
where a.studentid=b.studentNo  
//这样做 只能查询第一名只有一个的情况 很巧妙
mysql> select studentid,scoreValue from sc_score;  
+-----------+------------+  
| studentid | scoreValue |  
+-----------+------------+  
|         1 |         80 |  
|         1 |         85 |  
|         1 |         90 |  
|         2 |         75 |  
|         2 |         80 |  
|         2 |         84 |  
|         3 |         85 |  
|         3 |         85 |  
|         3 |         85 |  
+-----------+------------+  
9 rows in set (0.00 sec)  
  
mysql> SELECT studentNo,studentName FROM sc_student;  
+-----------+-------------+  
| studentNo | studentName |  
+-----------+-------------+  
|         1 | aa          |  
|         2 | bb          |  
|         3 | cc          |  
+-----------+-------------+  
3 rows in set (0.00 sec)  
  
  
mysql> SELECT a.studentid,  
    ->        b.studentName,  
    ->        a.sumScoreValue  
    ->   FROM (SELECT tmp.studentid,  
    ->                tmp.sumScoreValue,  
    ->                IF(@groupid = tmp.sumScoreValue,@rank := 1,@rank := @rank + 1) AS rank,  
    ->                @groupid := tmp.sumScoreValue  
    ->           FROM (SELECT studentid,  
    ->                        SUM(scoreValue) AS sumScoreValue  
    ->                   FROM sc_score  
    ->                  GROUP BY studentid  
    ->                  ORDER BY scoreValue DESC) tmp,  
    ->                (SELECT @rank := 0,@groupid := '') m) a,  
    ->        sc_student b  
    ->  WHERE a.studentid = b.studentNo  
    ->    AND a.rank = 1;  
+-----------+-------------+---------------+  
| studentid | studentName | sumScoreValue |  
+-----------+-------------+---------------+  
|         3 | cc          |           255 |  
|         1 | aa          |           255 |  
+-----------+-------------+---------------+  
2 rows in set (0.00 sec)
登录后复制

这是使用变量做的

自己重新做了

select s.id,s.stuid,stu.stuname, sumscore
from score s left join student stu on s.stuid = stu.stuid left join (select s.id,s.stuid,stu.stuname,sum(s.score) as sumscore
from score s left join student stu on s.stuid = stu.stuid where s.gradeid=4 and s.classid=1 and s.season=1 group by s.stuid)  as t1 on t1.id=s.id  where s.gradeid=4 and s.classid=1 and s.season=1  and sumscore in(select max(sumscore) from (select s.id,s.stuid,stu.stuname,sum(s.score) as sumscore
from score s left join student stu on s.stuid = stu.stuid where s.gradeid=4 and s.classid=1 and s.season=1 group by s.stuid) as t2)
登录后复制
智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

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