📅  最后修改于: 2022-03-11 14:57:08.095000             🧑  作者: Mango
select StudentName,
-> sum(StudentMathScore) AS TOTAL_SCORE
-> from countRowValueDemo
-> group by StudentName
-> order by sum(StudentMathScore);