sql查询每门课程成绩最高的学生

时间:2021-01-06 22:56:02

给出数据库(sco)如下图:

    sql查询每门课程成绩最高的学生

查出每门课程成绩最高的学生

 select b.id,b.kemu,b.name,b.chengji
from (select kemu,max(chengji) maxc
from sco group by kemu) a,sco b
where a.kemu=b.kemu and a.maxc = b.chengji;

其中

select kemu,max(chengji) maxc
from sco group by kemu

表示查出每科最高成绩和对应科目

查询出每科最高成绩之后,从所有成绩中查询对应的学生的详细信息