Oracle数据库学习教程
子查询
子查询语法,就是select语句的嵌套
select * from emp where sal > (select sal from emp where ename='SCOTT')
1.注意事项
- 合理的书写风格 (如上例,当写一个较复杂的子查询的时候,要合理的添加换行、缩进)
- 小括号( )
- 主查询和子查询可以是不同表,只要子查询返回的结果主查询可以使用即可
- 可以在主查询的where、select、having、from后都可以放置子查询
- 不可以在主查询的group by后面放置子查询 (SQL语句的语法规范)
- 强调:在from后面放置的子查询(***)from后面放置是一个集合(表、查询结果)
- 一般先执行子查询(内查询),再执行主查询(外查询);但是相关子查询除外
- 一般不在子查询中使用order by, 但在Top-N分析问题中,必须使用order by
- 单行子查询只能使用单行操作符;多行子查询只能使用多行操作符
- 子查询中的null值
2.主查询,子查询可以是不同的表
根据部门名,查该部门所有员工.在部门表由部门名找到部门号,在根据部门号去员工表找所有该部门的的员工.
select * from emp where deptno = (select deptno from dept where dname = 'SALES')
SQL优化:使用多表查询其实性能更优.
3. 在主查询的where,select,having,from处放置子查询
select empno,ename,(select dname from dept where depno = 10)部门 from emp;
其他的类似,但where后面不能使用组函数
select * from (select ename,sal from emp);
4.单行子查询和多行子查询
单行子查询:子查询返回一行的数据
单行操作符有:=,>,>=,<,<=,<>/!=
多行子查询:子查询返回多行的数据
多行操作符有:IN/NOT IN,ANY,ALL
IN:在集合中select * from where deptno in (select deptno from dept where dname = 'SALES' or dname = 'ACCOUNTING')
ANY:和集合的任意值比较
查薪水比30号部门任何一人高的员工:
错误比较:select * from emp where sal > (select sal from emp where deptno=30);
因为>是单行查询
正确方式,在>号后面加上ANY
ALL:和集合中所有值比较
和ANY类似,在比较符号后面加上ALL
5. 子查询值为NULL
注意使用is或者is not,不能使用not in,但可以使用in.
查询不是老板的员工:select * from emp where empno not in(select mgr from emp);
没有结果,因为有NULL.如果使用in则可以.select * from emp where empno not in (select mgr from emp where mgr is not null);
6.其他
一般不在子查询中使用order by
一般先执行子查询,再执行主查询