【MySQL学习笔记008】多表查询及案例实战

发布时间:2023年12月28日

1、多表关系

????????概述:项目开发中,在进行数据库表结构设计时,会根据业务需求及业务模块之间的关系,分析并设计表结构,由于业务之间相互关联,所以各个表结构之间也存在着各种联系,基本上可分为三种:

? ? ? ?(1) 一对多(多对一)

????????一部门对应多个员工,一个员工对应一个部门

? ? ? ? (2)多对多

????????一个学生可以选择多门课程,一门课程也可以供多个学生选择

? ? ? ? (3)一对一

????????用户与用户详情的关系

2、多表查询概述

? ? ? ? (1)概述

????????从多张表中查询数据

? ? ? ? (2)笛卡尔积

????????笛卡尔乘积是指在数学中,两个集合A集合和B集合的所有组合情况(在多表查询时,需要消除无效的笛卡尔积)

3、多表查询分类

? ? ? ? (1)内连接

????????对A、B表交集部分的数据进行操作

? ? ? ? (2)外连接

????????外连接分为左外连接与右外连接。

? ? ? ? a. 左外连接:相当于查询表1(左表)的所有数据 包含 表1和表2交集部分的数据,也就是表1的全部数据

? ? ? ? b. 右外连接:与左外连接同理,也就是表2 的全部数据

这种情况主要用于查询有些未关联的数据

? ? ? ? (3)自连接

????????当前表与自身的连接查询,自连接必须使用表别名;自连接查询,可以是内连接查询,也可以是外连接查询。

? ? ? ? (4)联合查询

????????把多次查询的结果合并起来,形成一个新的查询结果集。对于联合查询的多张表的列数必须保持一致,字段类型也需要保持一致。

? ? ? ? (5)子查询

????????SQL语句中嵌套select语句,称为嵌套查询,又称子查询。根据子查询结果不同,分为:

????????????????标量子查询(子查询结果为单个值)

????????????????列子查询(子查询结果为一列,可以为多行)

????????????????行子查询(子查询结果为一行,可以为多列)

????????????????表子查询(子查询结果为多行多列)

????????根据子查询位置,分为where之后,from之后,select之后。


????????以下为多表查询各个分类的演示

? ? ? ? 数据准备

-- 准备数据
create table dept(
    id int auto_increment comment 'ID' primary key ,
    name varchar(50) not null comment '部门名称'
) comment '部门表';
insert into dept (id,name) values (1, '研发部'),(2, '市场部'),(3, '财务部'),(4, '销售部'),(5, '总经办'), (6, '人事部');


create table emp(
    id int auto_increment comment 'ID' primary key,
    name varchar(50) not null comment '姓名',
    age int comment '年龄',
    job varchar(20) comment '职位',
    salary int comment '薪资',
    entrydate date comment '入职时间',
    managerid int comment '直属领导ID',
    dept_id int comment '部门ID'
) comment '员工表';

insert into emp (id, name, age, job, salary, entrydate, managerid, dept_id) values
                (1, '金庸', 65, '总裁', 20000, '2000-01-01', null, 5), (2, '张无忌', 20, '项目经理', 12500, '2005-12-05', 1, 1),
                (3, '杨逍', 33, '开发', 8400, '2000-11-03', 2, 1), (4, '韦一笑', 58, '开发', 11000, '2002-02-05', 2, 1),
                (5, '常遇春', 43, '开发', 10500, '2004-09-07', 3, 1), (6, '小昭', 19, '程序员裁员师', 6600, '2004-10-12', 2, 1),
                (7, '灭绝', 68, '财务总监', 8500, '2002-09-12', 1, 3), (8, '周芷若', 19, '会计', 4800, '2006-6-12', 7, 3),
                (9, '丁猛', 23, '出纳', 5200, '2009-05-13', 7, 3), (10, '赵敏', 20, '市场部总监', 12500, '2004-10-12', 1, 2),
                (11, '鹿杖客', 56, '职员', 3750, '2006-10-03', 10, 2), (12, '鹤笔翁', 19, '职员', 6600, '2007-05-09', 10, 2),
                (13, '方东白', 19, '职员', 10500, '2009-02-12', 10, 2), (14, '张三丰', 88, '销售总监', 14000, '2004-10-12', 1, 4),
                (15, '俞莲舟', 38, '销售', 4600, '2004-10-12', 14, 4), (16, '宋远桥', 40, '销售', 4600, '2004-10-12', 14, 4);

4、内连接:相当于查询A、B交集部分数据

????????内连接查询语法:

? ? ? ? a. 隐式内连接? ??

select 字段列表 from 表1, 表2 where 条件...;

? ? ? ? b. 显式内连接????????????????

select 字段列表 from 表1 [inner] join 表2 on 连接条件...;
-- 内连接演示
-- 1. 查询每个员工的姓名,及关联的部门的名称(隐式内连接实现)
-- 表结构:emp, dept
-- 连接条件:emp.dept_id = dept.id

select emp.name, dept.name from emp, dept where emp.dept_id = dept.id;

-- 2.查询每个员工的姓名,及关联的部门的名称(显式内连接实现)
-- 表结构:emp, dept
-- 连接条件:emp.dept_id = dept.id

select emp.name, dept.name from emp join dept on emp.dept_id = dept.id;

5、外连接:

????????左外连接:查询左表所有数据,以及两张表交集部分数据????????????????

select 字段列表 from 表1 left [outer] join 表2 on 条件...;

????????右外连接:查询右表所有数据,以及两张表交集部分数据????????????????

select 字段列表 from 表1 right [outer] join 表2 on 条件...;
-- 外连接演示
-- 1.查询emp表的所有数据,和对应的部门信息(左外连接)
-- 表结构:emp, dept
-- 连接条件:emp.dept_id = dept.id

select emp.*, dept.name from emp left outer join dept on emp.dept_id = dept.id;


-- 2. 查询dept表的所有数据,和对应的员工信息(右外连接)

select dept.*, emp.* from emp right outer join dept on emp.dept_id = dept.id;

6、自连接????????

select 字段列表 from 表A 别名A join 表A 别名B on 条件...;
-- 自连接
-- 1.查询 员工 及其 所属领导的名字
-- 表结构:emp

select a.name, b.name from emp a, emp b where a.managerid = b.id;

-- 2. 查询所有员工emp 及其领导的名字 emp, 如果员工没有领导, 也需要查询出来

select a.* '员工', b.name '领导' from emp a left join emp b on a.managerid = b.id;

7、联合查询(union, union all)????????

select 字段列表 from 表A...

union [all]

select 字段列表 from 表B...;

????????union all -- 会将全部的数据直接合并在一起,不带去重功能

????????union-- 会对合并之后的数据去重,自带去重功能

-- 联合查询
-- 1.将薪资低于5000的员工,和 年龄大于50岁的员工全部查询出来
select * from emp where salary < 5000
union
select * from emp where age > 50

8、子查询????????

select * from t1 where column1-(select column1 from t2);

????????子查询外部的语句可以是insert/update/delete/select的任何一个。

? ? ? ? (1)标量子查询:

????????????????返回的结果是单个值(数字、字符串、日期等),最简单的形式,这种子查询称为标量子查询。

-- 标量子查询
-- 1. 查询 “销售部” 的所有员工信息
-- a.查询“销售部”部门ID
select id from dept where name='销售部';

-- b.根据销售部部门ID,查询员工信息
select * from emp where dept_id= 4;

select * from emp where dept_id= (select id from dept where name='销售部');

-- 2. 查询在 “方东白”入职之后的员工信息
-- a. 查询 方东白 的入职信息
select entrydate from emp where name='方东白';

-- b. 查询指定入职日期之后的员工信息
select * from emp where entrydate > '2009-02-12';

select * from emp where entrydate > (select entrydate from emp where name='方东白');

? ? ? ? (2)列子查询

????????????????子查询返回的结构是一列(可以是多行),这种子查询称为 列子查询。

????????????????常用的操作符:IN、NOT IN、ANY、SOME、ALL

操作符描述
IN在指定的集合范围之内,多选一

NOT IN

不在指定的集合范围之内
ANY子查询返回列表中,有任意一个满足即可
SOME与ANY等同,使用SOME的地方都可以使用ANY
ALL子查询返回列表的所有值都必须满足
-- 列子查询
-- 1.查询"销售部" 和 “市场部” 的所有员工信息
-- a. 查询"销售部"和"市场部"的部门ID
select id from dept where name = '销售部' or name = '市场部';
# 2, 4
-- b.根据部门ID,查询员工信息
select * from emp where dept_id in (2,4);

select * from emp where dept_id in (select id from dept where name = '销售部' or name = '市场部');


-- 2.查询比财务部所有人工资都高的员工信息
-- a. 查询所有财务部人员工资
select id from dept where name = '财务部';
select salary from emp where dept_id = 3;

select salary from emp where dept_id = (select id from dept where name = '财务部');

-- b. 比财务部所有人工资都高的员工信息
select * from emp where salary > all (select salary from emp where dept_id = (select id from dept where name = '财务部'));


-- 3.查询比研发部其中任意一人工资高的员工信息
-- a.查询研发部的所有员工工资
select salary from emp where dept_id = (select id from dept where name = '研发部');

-- b. 比研发部其中任意一人工资高的员工信息
select * from emp where salary > any(or some) (select salary from emp where dept_id = (select id from dept where name = '研发部'));

????????(3)行子查询:

????????常用的操作符: =、<>、IN、NOT IN

-- 行子查询
-- 1.查询与 "张无忌" 的薪资及直属领导相同的员工信息
-- a.查询"张无忌"薪资与直属领导
select salary, managerid from emp where name = '张无忌';

-- b.查询与"张无忌"的薪资与直属领导相同的员工信息
select * from emp where (salary, managerid) = (select salary, managerid from emp where name = '张无忌');

? ? ? ? (4)表子查询:

????????常用的操作符: IN

-- 表子查询
-- 1、查询与“鹿杖客”,“宋远桥”的职位和薪资相同的员工信息
-- a.查询与“鹿杖客”,“宋远桥”的职位和薪资
select job, salary from emp where name = '鹿杖客' or name = '宋远桥';

-- b. 查询与“鹿杖客”,“宋远桥”的职位和薪资相同的员工信息
select * from emp where (job, salary) in (select job, salary from emp where name = '鹿杖客' or name = '宋远桥');

-- 2.查询入职日期是“2006-01-01”之后的员工信息,及其部门信息
-- a.入职日期是“2006-01-01”之后的员工信息
select * from emp where entrydate > '2006-01-01';

-- b. 查询这部分员工,对应的部门信息
select e.*, d.* from (select * from emp where entrydate > '2006-01-01') e left join dept d on e.dept_id = d.id;

9、多表查询实战案例

? ? ? ? (1)实战案例

????????1. 查询员工的姓名、年龄、职位、部门信息

????????2. 查询年龄小于30岁的员工姓名、年龄、职位、部门信息。

????????3. 查询拥有员工的部门ID、部门名称。

????????4. 查询所有年龄大于40岁的员工,及其归属的部门名称,如果员工没有分配部门,也需要展示出来。

????????5. 查询所有员工的工资等级。

????????6. 查询“研发部”所有员工的信息及工资等级

????????7. 查询“研发部”员工的平均工资

????????8. 查询工资比"灭绝”高的员工信息

????????9. 查询比平均薪资高的员工信息

????????10. 查询低于本部门平均工资的员工信息

????????11. 查询所有的部门信息,并统计部门的员工人数。

????????12. 查询所有学生的选课情况,展示出学生名称,学号,课程名称

?????????(2)数据准备

create table salgrade(
	grade int comment '等级',
	losal int comment '最低工资',
	hisal int comment '最高工资'
)comment '薪资等级要求';

insert into salgrade(grade, losal, hisal) values 
	(1, 0, 3000), (2, 3001, 5000), (3, 5001, 8000), (4, 8001, 10000)
	(5, 10001, 15000), (6, 15001, 20000), (7, 20001, 25000), (8, 25001, 30000);

????????(3)案例实现

-- 1. 查询员工的姓名、年龄、职位、部门信息(隐式内连接)
-- 表emp, dept
-- 连接条件:emp.dept_id = dept.id
select e.name, e.age, e.job, d.name from emp e, dept d where e.dept_id = d.id;

-- 2. 查询年龄小于30岁的员工姓名、年龄、职位、部门信息(显式内连接)
-- 表emp, dept
-- 连接条件:emp.dept_id = dept.id
select e.name, e.age, e.job, d.name from emp e inner join dept d on e.dept_id = d.id where e.age < 30;


-- 3. 查询拥有员工的部门ID、部门名称。
-- 表emp, dept
-- 连接条件:emp.dept_id = dept.id
-- 也就是求交集,内连接
select d.id, d.name from emp e, dept d where e.dept_id = d.id;


-- 4. 查询所有年龄大于40岁的员工,及其归属的部门名称,如果员工没有分配部门,也需要展示出来。
-- 表emp, dept
-- 连接条件:emp.dept_id = dept.id
-- 外连接
select e.*, d.name from emp e left join dept d on e.dept_id = d.id where e.age > 40;


-- 5. 查询所有员工的工资等级。
-- 表emp, salgrade
-- 连接条件: emp.salary >= salgrade.losal and emp.salary <= salgrade.hisal
select e.*, s.grade from emp e, salgrade s where e.salary >= s.losal and e.salary <= s.hisal;

select e.*, s.grade from emp e, salgrade s where e.salary between s.losal and s.hisal;


-- 6. 查询“研发部”所有员工的信息及工资等级
-- 表emp, dept,salgrade
-- 连接条件1:emp.dept_id = dept.id
-- 连接条件2:emp.salary >= salgrade.losal and emp.salary <= salgrade.hisal
-- 查询条件:dept.name = '研发部'

-- a.“研发部”ID
select d.id from dept d where d.name = '研发部';
-- b.“研发部”所有员工的信息
select e.* from emp e where e.dept_id = (select d.id from dept d where d.name = '研发部');
-- c.工资等级
select e.*, s.grade from (select e.* from emp e where e.dept_id = (select d.id from dept d where d.name = '研发部')) e, salgrade s where e.salary between s.losal and s.hisal;

select e.*, s.grade from emp e, dept d, salgrade s where e.dept_id = d.id and (e.salary between s.losal and s.hisal) and (d.name = '研发部');

-- 7. 查询“研发部”员工的平均工资
-- 表emp, dept
-- 子查询(标量子查询)
select avg(e.salary) from emp e where e.dept_id = d.id and d.name = '研发部';


-- 8. 查询工资比"灭绝”高的员工信息
-- 表emp
-- 子查询(行子查询)
select e.* from emp e where e.salary > (select e.salary from emp e where e.name = '灭绝');

select e1.* from emp e1, emp e2 where e1.salary > e2.salary and e2.name = '灭绝';


-- 9. 查询比平均薪资高的员工信息
-- 表emp
-- 子查询(行子查询)
select e.* from emp e where e.salary > (select avg(e.salary) from emp e);


-- 10. 查询低于本部门平均工资的员工信息
-- 表emp, dept
-- 连接条件1:emp.dept_id = dept.id
-- 列子连接
-- a.本部门平均工资
select avg(e.salary) from emp e where e.dept_id = 1;
select avg(e.salary) from emp e where e.dept_id = 2;

-- b.低于本部门平均工资的员工信息
select e.* from emp e1 where e1.salary < (select avg(e2.salary) from emp e2 where e2.dept_id = e1.dept_id);


-- 11. 查询所有的部门信息,并统计部门的员工人数。
select d.id, d.name, ( select count(*) from emp e where e.dept_id = d.id ) from dept d;

select d.*, conut(d.id) from dept d left join emp e on e.dept_id = d.id group by d.id;

-- 12. 查询所有学生的选课情况,展示出学生名称,学号,课程名称
-- 表: student, course, student_course
-- 连接条件: student.id =  student_course.studentid, course.id = student_course.courseid

select s.name, s.no, c.name from student s, course c, student_course sc where s.id = sc.studentid and sc.course = c.id;

文章来源:https://blog.csdn.net/m0_46489757/article/details/135188199
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。