嵌套查询
带有in谓词的子查询
- 子查询不能使用order by子句
--例子:查询选修2号课程的所有学生的姓名
--连接查询
select sname
from student s,sc
where s.sno=sc.sno and cno=2;
--嵌套查询,先查选修了2号课程的学生学号,再查学号对应的姓名
select sname
from student
where sno in(
select sno
from sc
where cno=2
);
--例子:找出每个学生超过他自己选修课程平均成绩的课程号
select sno,cno
from sc x
where grade>(
select avg(grade)
from sc y
where y.sno=x.sno
);
--例1:查询与“刘晨”在同一个系学习的学生学号、姓名和所在系
--(用自身连接实现)
select s1.sno,s1.sname,s1.sdept
from student s1,student s2
where s1.sdept=s2.sdept and s2.sname='刘晨';
--带in谓词的子查询
--1、查询刘晨所在的系
--2、查询在刘晨所在系的学生
select sname,sno,sdept
from student
where sdept in(
select sdept
from student
where sname='刘晨');
--查询选修课程名为IS的学生的学号和姓名
--先在course中查IS的课程号,再在sc中查选修IS课程号的学生的sno,再在student中找到姓名
select sno,sname
from student
where sno in(
select sno
from sc
where cno in(
select cno
from course
where cname='IS'));
连接查询
当确切知道内层查询返回的是单值时,可用比较运算符,与any或all配合使用
带有比较运算符的子查询
--假设一个学生只可能在一-个系学习,并且必须属于一个系,则在例1 可以用=代替IN :
select sno,sname
from student
where sdept=(
select sdept
from student
where sname='刘晨');
--找出每个学生超过他选修课程平均成绩的课程号
select sno,cno
from sc s1
where grade > (
select avg(grade