Oracle DQL

DQL语言

完整语法

语法

1
2
3
4
5
6
select [TOP|DISTINCT] [选择列表]|[*]
from 数据源
[where 查询条件]
[group by 分组条件]
[having 过滤条件]
[order by 排序条件 asc|desc nulls first|last];

执行顺序

1
2
3
4
5
6
(5)select [(5-3)TOP|(5-2DISTINCT] (5-1)[选择列表]|[*]
1from 数据源
2)[where 查询条件]
3)[group by 分组条件]
4)[having 过滤条件]
6)[order by asc|desc nulls first|last];

示例

简单查询

1
2
--查询所有员工的信息
select * from emp;

别名查询

1
2
--查询所有员工的姓名
select e.ename from emp e;

去重查询

1
2
--查询所有部门的编号
select distinct e.deptno from emp e;

条件查询

运算符

  1. 条件运算符:>、>=、<、<=、=、<=>、!=、<>
  2. 逻辑运算符:and、or、not
  3. 模糊运算符:
    • like:%任意多个字符、_任意单个字符、如果有特殊字符,需要使用escape转义
    • between and
    • not between and
    • in
    • is null
    • is not null

演示

1
2
--查询工资>3000的员工信息
select * from emp where sal > 3000;

分组查询

1
2
--统计每个部门有多少个人
select deptno as "部门",count(*) as "人数" from emp group by deptno;

分组过滤

1
2
3
4
5
--统计部门人数>5人的部门的编号
select deptno as "部门", count(*) as "人数"
from emp
group by deptno
having count(*) > 5;

排序查询

1
2
--按照员工主管编号由高到低进行排序,NULL值放到最后边
select * from emp order by mgr desc nulls last;

分页查询

1
2
3
4
5
--查询前10条员工的信息
--注意:Oracle中不支持limit,需要在原始表加上一列:行号,然后使用子查询来实现分页
select *
from (select rownum hanghao,e.* from emp e) t
where t.hanghao >=1 and t.hanghao <= 10;

多表查询

  • 内连接
    • 隐式内连接: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
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
union : 它会去除重复的,并且排序
union all : 不会去除重复的,不会排序
*/

--工资大于1500或者20号部门下的员工
select * from emp where sal > 1500
union
select * from emp where deptno = 20;

--工资大于1500或者20号部门下的员工
select * from emp where sal > 1500
union all
select * from emp where deptno = 20;
  • 交集运算:找两个查询结果的交集
1
2
3
4
--工资大于1500并且20号部门下的员工
select * from emp where sal > 1500
intersect
select * from emp where deptno = 20;
  • 差集运算:找两个查询结果的差集
1
2
3
4
--1981年入职员工(不包括总裁和经理)
select * from emp where to_char(hiredate,'yyyy') = '1981'
minus
select * from emp where job = 'PRESIDENT' or job = 'MANAGER';
  • 注意事项:
  1. 列的类型要一致
  2. 列的顺序要一致
  3. 列的数量要一致,如果不够,可以使用null填充

子查询

  • 单行子查询:>、>=、<、<=、!=、<>、=、<=>
  • 多行子查询:in、not in、any、some、all、exits

1、in的使用

1
2
--查询所有经理的信息
select * from emp where empno in (select mgr from emp where mgr is not null);

2、not in的使用

1
2
--查询不是经理的信息
select * from emp where empno not in (select mgr from emp where mgr is not null);

3、any的使用

1
2
--查询出比10号部门任意一个员工薪资高的员工信息
select * from emp where sal > any (select sal from emp where deptno = 10);

4、some的使用

1
2
--查询出比10号部门任意一个员工薪资高的员工信息
select * from emp where sal > some (select sal from emp where deptno = 10);

5、all的使用

1
2
--查询出比20号部门所有员工薪资高的员工信息
select * from emp where sal > all (select sal from emp where deptno = 20);

6、exits的使用

1
2
--查询有员工的部门的信息
select * from dept d1 where exists (select * from emp e1 where e1.deptno = d1.deptno);

Oracle DQL
https://flepeng.github.io/042-Oracle-22-命令-Oracle-DQL/
作者
Lepeng
发布于
2025年3月22日
许可协议