从所有人的平均成绩中,查询出平均成绩最高和最低的学生。
select stu.name,max(avg(成绩)),min(avg(成绩)) from stu,score where stu.id = score.stuid group by stu.id