sql server统计总成绩和排名
这里的图片可以拖拽到一个新页面查看原图!!!!
这里有两个表,需要查询总成绩和排名
Sql语句:
select ST.name,SE.Chinese,SE.Math,SE.English, ( SE.Chinese + SE.Math + SE.English ) as '总成绩', ROW_NUMBER()over(order by ( SE.Chinese + SE.Math +SE.English ) desc) as '排名' from Student ST left join Score SE on ST.id= SE.sId
有更好的写法请评论!
本文来自博客园,作者:沉迷编程的程序员,转载请注明原文链接:https://www.cnblogs.com/codeDevotee/p/11120800.html
欢迎各位找我代写程序,python、c#、web等都可以,加我请注明博客园微信:A15919195482