• SQL分组求每组最大值问题的解决方法收集 (转载)


    例如有一个表student,其结构如下:

    id      name     sort      score

    1        张三      语文      82

    2        李四      数学       95

    3        王五      语文       88

    4        小东       英语       86

    5        张三      数学       92

    6        小红      体育       80

    要求查询的结果如下:

    id      name     sort      score

    3        王五      语文       88

    2        李四      数学       95

    4        小东       英语       86

    6        小红      体育       80

    顺序可调换,即为每个科目的最高分信息

    SQL如下:

    法一:

    select student.id,student.name,student.sort,student.score from student inner join (select sort, max(score) as score from student group by sort) B on student.sort=B.sort AND student.score=B.score order by id

    法二:

    select * from student a where not exists(select * from student where a.score<score and a.sort=sort )

    法三:

    select * from student a where 1〉(select count(*) from student where a.score<score and a.sort=sort )

  • 相关阅读:
    zabbix监控系统客户端安装
    可以学习的博客地址
    Linux下Nagios的安装与配置
    ShopNC多用户商城标题去版权 后台去版权方法2.0版本
    解析crontab php自动运行的方法
    暑假周报告(第五周)
    暑假周报告(第四周)
    暑假周报告(第三周)
    暑假周报告(第二周)
    《大道至简》读后感
  • 原文地址:https://www.cnblogs.com/wjwen/p/6418670.html
Copyright © 2020-2023  润新知