目录
6嵌套子查询
6.1 in 测试成员资格
1-2018和2019都开设的课程
select distinct course_id
from section
where year=2018 and
course_id in (select course_id
from section
where year=2019)
2-不叫 小明 小红的学生名字
select name
from student
where name not in('小明','小红')
3-可以测试多个成员资格
where (x,y,z) in (select x,y,z
from A
where ...)
6.2 集合比较
1-some代表某一个
分数至少比一个男生高 的学生名字
select name
from student
where score>some(select score
from student
where sex='男')
2-all代表所有
找出 大于等于所有班级平均分 的班级(平均分最高的班级)
sele