((select AVG(考试成绩) from student.选课 where 学号=学生.学号) >=all (select AVG(考试成绩) from student.选课 group by 学号))语句表达了“所有课程平均分最高”的含义,该子查询用到了ALL量词的嵌套查询和内外层互相关的嵌套查询。反馈 收藏
查询“数据库”课程的成绩大于70分的、所有课程平均分最高的学生信息。 相关知识点: 试题来源: 解析select * from student.学生 where 学号 in (select 学号 from student.选课 where 考试成绩>=70 and 课程编号= (select 课程编号 from student.课程 where 课程名称='数据库')) and ...