Oracle DQL
DQL语言
完整语法
语法
1 |
|
执行顺序
1 |
|
示例
简单查询
1 |
|
别名查询
1 |
|
去重查询
1 |
|
条件查询
运算符
- 条件运算符:>、>=、<、<=、=、<=>、!=、<>
- 逻辑运算符:and、or、not
- 模糊运算符:
- like:%任意多个字符、_任意单个字符、如果有特殊字符,需要使用escape转义
- between and
- not between and
- in
- is null
- is not null
演示
1 |
|
分组查询
1 |
|
分组过滤
1 |
|
排序查询
1 |
|
分页查询
1 |
|
多表查询
- 内连接
- 隐式内连接:select * from emp e1, dept d1 where e1.deptno = d1.deptno;
- 显示内连接:select * from emp e1 inner join dept d1 on e1.deptno = d1.deptno;
- 外连接
- 左外连接
- 隐式左外连接:select * from emp e1,dept d1 where e1.deptno = d1.deptno(+);
- 显示左外连接:select * from emp e1 left outer join dept d1 on e1.deptno = d1.deptno;
- 右外连接
- 隐式右外连接:select * from emp e1,dept d1 where e1.deptno(+) = d1.deptno;
- 显示右外连接:select * from emp e1 right outer join dept d1 on e1.deptno = d1.deptno;
- 全外连接:select * from emp e1 full outer join dept d1 on e1.deptno = d1.deptno;
- 左外连接
- 交叉连接
- 隐式交叉连接:select * from emp, dept;
- 显示交叉连接:select * from emp e1 cross join dept d1;
联合查询
- 并集运算:将两个查询结果进行合并
1 |
|
- 交集运算:找两个查询结果的交集
1 |
|
- 差集运算:找两个查询结果的差集
1 |
|
- 注意事项:
- 列的类型要一致
- 列的顺序要一致
- 列的数量要一致,如果不够,可以使用null填充
子查询
- 单行子查询:>、>=、<、<=、!=、<>、=、<=>
- 多行子查询:in、not in、any、some、all、exits
1、in的使用
1 |
|
2、not in的使用
1 |
|
3、any的使用
1 |
|
4、some的使用
1 |
|
5、all的使用
1 |
|
6、exits的使用
1 |
|
Oracle DQL
https://flepeng.github.io/042-Oracle-22-命令-Oracle-DQL/