SELECT b.names AS c_Name, COUNT(*) AS 人数, avg(a.Score) AS 平均成绩
FROM student AS a, class AS b
WHERE a.C_id = b.ID
GROUP BY b.Names
ORDER BY avg(a.Score) DESC;
10-21
4319

12-06
1万+
