📜  desc by sum 学生提交 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:08.095000             🧑  作者: Mango

代码示例1
select StudentName,
   -> sum(StudentMathScore) AS TOTAL_SCORE
   -> from countRowValueDemo
   -> group by StudentName
   -> order by sum(StudentMathScore);