使用SQL语句统计分析男女学生中总分最高的同学的信息。

School数据表结构如下:Student(Sno,Sname,Ssex,Sbirthday,Sclass)
Teacher(Tno,Tname,Tsex,Tbirthday,Prof,Depart)
Course(Cno,Cname,Tno)
Score(Sno,Cno,Degree)
Oper(UserID,Password,Rights)
select * from 敏仔喊student 桥野where sno in 
(select s.sno 戚禅from 
(select sno,row_number() over(partition by ssex order by degree desc) rn
(select a.sno,a.ssex,sum(b.degree) degree
from student a,Score b where a.sno=b.sno
group by sno,ssex) t) s
where rn=1)

搜一下:使用SQL语句统计分析男女学生中总分最高的同学的信息。