A.
select 课程,max(score),min(score) from student_score
B.
select 课程,max(score),min(score) from student_score group by score
C.
select 课程,max(score),min(score) from student_score group by 课程
D.
select 课程,max(score),min(score) from student_score having 课程