子查询

作者: 马克扎克化云腾 | 来源:发表于2019-05-07 15:30 被阅读0次

1. 子查询的概念

1.1 子查询的概念和理解

某些查询逻辑中,需要引入另一个查询做为条件或者数据来源进行辅助。
比如:查询与‘TOM’在同一部门工作的其他员工

select * from emp where deptno = TOM的deptno and ename <> 'TOM';

TOM的deptno

select deptno from emp where ename = 'TOM';

将两个独立的查询合并起来

select * from emp 
where deptno = (select deptno from emp where ename = 'TOM')
and ename <> 'TOM';

整个外部这部分SQL语句被称为外部查询(主查询),括号内查询TOM部门号的这个SQL语句被称为子查询

image
1.2 子查询使用位置

子查询可以使用在很多子句中

  • from子句中,from子句中的子查询可以理解为是一张临时的“表”(视图)
  • where子句中
  • having子句中
    通常主要使用在where和from中

2. 简单子查询(单行子查询)

单行子查询的查询结果是一行一列的数据
可以使用常规的> ,<, >=, <=, =, !=进行子查询数据的比较
可以将子查询理解为就是一个简单的数据
示例1:查询比TOM月薪高的员工信息

select * from emp where sal > (select sal from emp where ename = 'TOM')

image

示例2:查询与LEE是同一职位同一部门的其他员工信息

select *
from emp
where job = (select job from emp where ename = 'LEE') 
and deptno = (select deptno from emp where ename = 'LEE')
and ename <> 'LEE'

image

子查询中可以嵌套其他的子查询,层数限制在32层内
示例3:查询月薪高于AMY所在部门平均月薪的员工信息

select *
from emp
where sal > (select AVG(sal) from emp 
         where deptno = (select deptno from emp where ename = 'AMY'))

image

3. 多行子查询

3.1 多行子查询

多行子查询返回的是多行一列的数据
当子查询返回多行记录时,使用=这类的比较运算符无法执行

image

当有多条记录返回时,使用IN来进行比较,相当于等于子查询中某个值即可
示例4: 查询是经理的员工信息(=)

select *
from emp
where empno in (select distinct mgr from emp where mgr is not null)

image

示例5: 查询不是经理的员工信息(!=)

select *
from emp
where empno not in (select distinct mgr from emp where mgr is not null)

image

not in中的数据不能有null值,如果有null值,相当于执行了=null操作,不能筛选出任何数据

3.2 ANY(SOME)与ALL

主要使用在多行子查询中进行>或<与操作时
ANY(SOME): 任何一个
ALL: 所有

ANY 比最小的大
ALL 比最大的大
< ANY 比最大的小
< ALL 比最小的小

image

示例6:查询比10部门所有人月薪都要高的员工信息

select *
from emp
where sal > ALL(select sal from emp where deptno = 10)

也可以使用

select *
from emp
where sal > (select MAX(sal) from emp where deptno = 10)

image

使用ANY和ALL执行效率要高于分组函数

3.3 from子句中的子查询

将子查询运用在from中,相当于一张“表”
必须为作为“表”的子查询起“表别名”(示例7中的t)
示例7:查询部门编号,部门名称,部门loc,部门人数

select d.deptno,d.dname,d.loc,IFNULL(t.empnum,0)
from dept d left join
    (select deptno, COUNT(empno) as empnum
    from emp
    where deptno is not null
    group by deptno) t
     on(d.deptno = t.deptno) 

image

在MySQL中,update语句分组函数的结果不能作为子查询的返回结果

update emp set sal = sal + 200
where sal < (select avg(sal) from emp);

MySQL中认为更新和子查询不能同时进行。
解决办法:将子查询再次进行嵌套,制作成From中的子查询

update emp set sal = sal + 200
where sal < (select asal from(select avg(sal) from emp) t);

4. 相关子查询(难点)

前3节的子查询都属于独立子查询,子查询可以独立执行
相关子查询:子查询不可独立执行,必须依赖外部查询

4.1 常规的相关子查询

示例8:查询比自己所在部门平均月薪高的员工信息
常规写法

select * from emp e
      join (select deptno, AVG(sal) as asal
        from emp
        group by deptno) t
      on(e.deptno = t.deptno)
where e.sal > t.asal

相关子查询写法

select * from emp e1
where e1.sal > (select AVG(sal) from emp e2 where e2.deptno = e1.deptno)

image

相关子查询的特点:外部查询执行一行数据,子查询执行一次

image
4.2 EXIST关键字

子查询用于验证外部查询的一行记录是否符合子查询的条件
示例9: 查询是经理的员工的员工信息

select *
from emp e1
where exists (select empno from emp e2 where e2.mgr = e1.empno)

image image

如果想表述不存在的逻辑,使用NOT EXISTS

相关文章

  • Oracel_子查询

    SQL子查询 子查询语法 子查询 (内查询) 在主查询之前一次执行完成。 子查询的结果被主查询(外查询)使用 。 ...

  • Oracle | 子查询和伪列

    1. 子查询 (1)单行子查询 (2)多行子查询 1)ANY子查询 2)ALL 子查询 2. 伪列...

  • 《SQL必知必会》第 11 课 使用子查询

    目标: 11.1 子查询 11.2 利用子查询进行过滤 11.3 作为计算字段使用子查询 11.1 子查询 查询(...

  • MySQL 子查询

    什么是子查询 为什么要使用子查询 子查询的分类 怎样使用子查询 关联子查询 要使用的数据表 1. 什么是子查询? ...

  • 数据库第七天

    子查询 查询里面还有查询注意: 子查询优先于主查询执行 最好子查询用括号 查询比ALLEN工资高的员工信息 单行子...

  • SQL查询_高级查询

    SQL查询_高级查询 一、子查询 子查询出现的位置一般为条件语句,oracle会先执行子查询,再执行父查询,子查询...

  • 17/12/6 子查询

    17/12/6 子查询 单行子查询 括号内的查询叫做子查询,也叫内部查询,先于主查询的执行。 子查询可以嵌入1.w...

  • MySql(七)子查询与虚表

    一、子查询 子查询在主查询前执行一次 主查询使用子查询的结果 子查询要用括号括起来 将子查询放在比较运算符的右边 ...

  • 数据分析之SQL子查询

    文章阅读路线: SQL子查询概念 独立子查询实例 相关子查询实例 SQL子查询常见玩伴 1.SQL子查询概念 子查...

  • MySql基础-子查询

    一、子查询定义 定义: 子查询允许把一个查询嵌套在另一个查询当中。 子查询用()括起来 子查询,又叫内部查询,相对...

网友评论

      本文标题:子查询

      本文链接:https://www.haomeiwen.com/subject/hyaeoqtx.html