use EMIS
go
select student_id,
max(score) 最高分,
min(score) 最低分,
count(score) 成绩记录条数
from t_course_reg
group by
student_id
go
04-21
3992

01-18
189

04-26
2456
