子查询也就是嵌套SELECT语句,一个 SELECT 语句的查询结果可以作为另一个语句的输入。
子查询能够出现在Where子句中,
也能够出现在from子句中,作为一个临时表使用。
查询选修了老师名叫Lee(假设唯一)的学生名字
sql> select stName from Student
where stId in(select distinct stId from score where teId=(select teId from teacher where teName='Lee'));