-- 多对多 ----------
create table student(
id int auto_increment primary key comment '主键ID',
name varchar(10) comment '姓名',
no varchar(10) comment '学号'
)comment '学生表';
insert into student values (null,'黛绮丝','20010101'),(null,'谢孙','20010102'),
(null,'应正天',20010103),(null,'伟一行',20010104);
create table course(
id int auto_increment primary key comment '主键ID',
name varchar(10) comment '课程名称'
)comment '课程表';
insert into course values (null,'Java'),(null,'PHP'),(null,'MySQL'),(null,'Hadoop');
create table student_course(
id int auto_increment comment '主键' primary key ,
studentid int not null comment '学生ID',
courseid int not null comment '课程ID',
constraint fk_courseid foreign key (courseid) references course (id),
constraint fk_studentid foreign key (studentid) references student(id)
)comment '学生课程中间表';
insert into student_course values (null,1,1),(null,1,2),(null,1,3),(null,2,2),
(null,2,3),(null,3,4);
-- 数据准备
create table emp2
(
id int primary key auto_increment comment '主键',
name varchar(10) comment '姓名',
age tinyint unsigned comment '年龄',
job varchar(10) comment '工作',
salary int comment '薪水',
entrydate date comment '入职时间',
managerid int comment '员工号',
dept_id int comment '外键'
) comment '员工表';
create table dept(
id int primary key auto_increment comment '主键',
name varchar(10) comment '名称'
)comment '部门表';
-- 添加外键
alter table emp2 add foreign key (dept_id) references dept(id);
-- alter table 从表 add foreign key(外键字段) references 主表(主键字段)
-- 添加数据
insert into emp2 (id, name, age,job,salary, entrydate,managerid,dept_id)
values
(1,'金庸',66,'总裁',20000,'2000-01-01',null,5),
(2,'张无忌',20,'项目经理',10000,'2001-02-01',1,1),
(3,'杨逍',33,'开发',2000,'2003-05-01',2,1),
(4,'韦一笑',46,'开发',2000,'2010-11-11',2,1),
(5,'常遇春',43,'开发',2300,'2011-11-14',3,1),
(6,'小昭',19,'开发',2000,'2012-10-15',2,1),
(7,'灭绝',60,'总监',2500,'2013-09-16',1,3),
(8,'周芷若',19,'出纳',2600,'2014-08-17',7,3),
(9,'丁敏君',23,'职员',2050,'2015-06-18',7,3),
(10,'赵敏',20,'职员',2090,'2016-05-19',1,2),
(11,'鱼梁洲',56,'销售总监',3000,'2017-03-18',10,2),
(12,'鹿杖客',19,'销售',5000,'2004-03-17',10,2),
(13,'鹤壁问',19,'销售',6000,'2005-04-19',10,2),
(14,'东方白',23,'销售',7000,'2006-05-22',1,4),
(15,'张三丰',41,'市场部总监',8000,'2007-09-25',14,4),
(16,'宋远桥',42,'程序员鼓励师',9000,'2008-12-27',14,4),
(17,'程友良',43,null,10000,'2009-12-01',1,null);
insert into dept(id,name)values
(1,'研发部'),
(2,'市场部'),
(3,'财务部'),
(4,'销售部'),
(5,'总经部'),
(6,'人事部');
多表查询
-- 多表查询 -- 笛卡尔积 共102行(17 * 6)
select * from emp2,dept;
select * from emp2,dept where emp2.dept_id = dept.id;
内连接查询语法
SELECT 字段列表 FROM 表1,表2 WHERE 条件…;
SELECT 字段列表 FROM 表1 [INNER] JOIN 表2 ON 连接条件…;
-- 内连接演示
-- 1、查询每一个员工的姓名,及关联的部门名称(隐式内连接实现)
-- 表结构:emp,dept
-- 连接条件:emp.dept_id = dept.id
select emp2.name,dept.name from emp2,dept where emp2.dept_id = dept.id;
-- 当表名很长时,为表取别名,简化SQL语句的编写
select e.name,d.name from emp2 e,dept d where e.dept_id = d.id;
-- 1、查询每一个员工的姓名,及关联的部门名称(显式内连接实现)
-- 表结构:emp,dept
-- 连接条件:emp.dept_id = dept.id
select e.name,d.name from emp2 e inner join dept d on e.dept_id = d.id
外连接查询语法:
SELECT 字段列表 FROM 表1 LEFT [OUTER] JOIN 表2 ON 条件…;
相当于查询表1(左表)的所有数据包含表1和表2交集的部分数据
SELECT 字段列表 FROM 表1 RIGHT [OUTER] JOIN 表2 ON 条件…;
相当于查询表2(右表)的所有数据包含表1和表2交集的部分数据
-- 外连接演示
-- 1、查询emp表的所有数据,和相对应的部门信息(左外连接)
-- 表结构
-- 连接条件: emp.dept.id = dept.id
select e.*,d.name from emp2 e left outer join dept d on e.dept_id = d.id;
select e.*,d.name from emp2 e left join dept d on e.dept_id = d.id;
-- 1、查询dept表的所有数据,和相对应的员工信息(右外连接)
select d.*,e.* from emp2 e right outer join dept d on d.id = e.dept_id;
-- 将左外改成右外
select d.*,e.* from dept d left outer join emp2 e on d.id = e.dept_id;
自连接查询语法:
SELECT 字段列表 FROM 表A 别名A JOIN 表A 别名B ON 条件…;
自连接查询,可以是内连接查询,也可以是外连接查询。
-- 自连接
-- 1.查询员工及其所属领导的名字
-- 表结构:emp
select a.name,b.name from emp2 a,emp2 b where a.managerid = b.id;
-- 2.查询所有员工emp及其领导的名字emp,如果员工没有领导,也需要查询出来
-- 表结构:emp a, emp b
select a.name '员工', b.name '领导' from emp2 a left join emp2 b on a.managerid = b.id;
对于union查询,就是把多次查询的结果合并起来,形成一个新的查询结果集。
SELECT 字段列表 FROM 表A…
UNION[ALL]
SELECT 字段列表 FROM 表B…;
1. 对于联合查询的多张表的列数必须保持一致,字段类型也需要保持一致。
2. union all会将全部的数据直接合并在一起,union会对合并之后的数据去重。
-- union all , union
-- 1.将薪资低于5000的员工,和年龄大于50岁的员工全部查询出来
select * from emp2 where salary < 5000
union all
select * from emp2 where age > 50;
-- 去重后:
select * from emp2 where salary < 5000
union all
select * from emp2 where age > 50;
SELECT * FROM t1 EHERE column1 = (SELECT column1 FROM t2);
-- 标量子查询
-- 1.查询“销售部”的所有员工信息
-- a.查询“销售部”部门ID
select id from dept where name = '销售部';
-- b.根据销售部部门ID,查询员工信息
select * from emp2 where dept_id = (select id from dept where name = '销售部');
-- 2.查询在“东方白”入职之后的员工信息
-- a.查询东方白的入职日期
select entrydate from emp2 where name = '东方白';
-- b.查询指定入职日期之后入职的员工信息
select * from emp2 where
entrydate > (select entrydate from emp2 where name = '东方白');
-- 列子查询
-- 1.查询“销售部”和“市场部”的所有员工信息
-- a.查询“销售部”和“市场部”的部门ID
select id from dept where name = '销售部' or name = '市场部';
-- b.根据部门ID,查询员工信息
select * from emp2 where dept_id in
(select id from dept where name = '销售部' or name = '市场部');
-- 2.查询比财务部所有人工资都高的员工信息
-- a.查询所有财务部人员工资
select id from dept where name = '财务部';
select salary from emp2 where dept_id = (select id from dept where name = '财务部');
-- b.比财务部所有人工资都高的员工信息
select * from emp2 where salary >
all(select salary from emp2 where dept_id =
(select id from dept where name = '财务部'));
-- 3.查询比研发部其中任意一人工资高的员工信息
-- a.查询研发部所有人工资
select salary from emp2 where dept_id
= (select id from dept where name = '研发部');
-- b.比研发部其中任意一人工资高的员工信息(比最小值高),any可以换成some
select * from emp2 where salary >
any (select salary from emp2 where dept_id =
(select id from dept where name = '研发部'));
-- 行子查询
-- 1、查询与“张无忌”的薪资及直属领导相同的员工信息;
-- a.查询“张无忌“的薪资及直属领导
select salary,managerid from emp2 where name = '张无忌';
-- b.查询与”张无忌“的薪资及直属领导相同的员工信息
select * from emp2 where (salary,managerid)
= (select salary,managerid from emp2 where name = '张无忌');
-- 表子查询
-- 1、查询“鹿杖客”,“宋远桥”的职位和薪资相同的员工信息
-- a.查询“鹿杖客”,“宋远桥”的职位和薪资
select job,salary from emp2 where name = '鹿杖客' or name = '宋远桥';
-- b.查询“鹿杖客”,“宋远桥”的职位和薪资相同的员工信息
select * from emp2 where (job,salary) in
(select job,salary from emp2 where name = '鹿杖客' or name = '宋远桥');
-- 2、查询入职日期是“2006-01-01”之后的员工信息,及其部门信息
-- a.查询入职日期是“2006-01-01”之后的员工信息
select * from emp2 where entrydate > '2006-01-01';
-- b.查询这部分员工,对应的部门信息
select e.*,d.* from (select * from emp2 where entrydate > '2006-01-01')
e left join dept d on e.dept_id = d.id;
数据准备:
create table salgrade(
grade int comment '等级',
losal int comment '该等级下的最低薪资',
hisal int comment '该等级下的最高薪资'
)comment '薪资等级表';
insert into salgrade values (1,0,3000);
insert into salgrade values (2,3001,5000);
insert into salgrade values (3,5001,8000);
insert into salgrade values (4,8001,10000);
insert into salgrade values (5,10001,15000);
insert into salgrade values (6,15001,20000);
insert into salgrade values (7,20001,25000);
insert into salgrade values (8,25001,30000);
-- 1. 查询员工的姓名、年龄、职位、部门信息。(隐式内连接)
select e.name, e.age, e.job, d.name
from emp2 e,
dept d
where e.dept_id = d.id;
-- 2. 查询年龄小于30岁的员工姓名、 年龄、职位、部门信息。(显式内连接)
-- 显示内连接方式:
select e.name, e.age, e.job, d.name
from emp2 e
inner join dept d
on e.dept_id = d.id
where e.age < 30;
-- 第二种查询方式
select e.name, age, job, d.name
from emp2 e,
dept d
where e.dept_id = d.id
and e.age < 30;
-- 3. 查询拥有员工的部门ID、部门名称。(要去重)
select distinct d.id, d.name
from emp2 e,
dept d
where e.dept_id = d.id;
-- 4. 查询所有年龄大于40岁 的员工,及其归属的部门名称;如果员工没有分配部门,也需要展示出来。(左外连接)
select e.*, d.name
from emp2 e
left join dept d on
d.id = e.dept_id
where e.age > 40;
-- 5. 查询所有 员工的工资等级。
select e.*, s.grade, s.losal, s.hisal
from emp2 e,
salgrade s
where e.salary >= s.losal
and e.salary <= s.hisal;
select e.*, s.grade, s.losal, s.hisal
from emp2 e,
salgrade s
where e.salary between s.losal and s.hisal;
-- 6. 查询"研发部"所有员工的信息及工资等级。
select *
from emp2 e,
dept d,
salgrade s
where e.dept_id = d.id
and (e.salary between s.losal and s.hisal)
and d.name = '研发部';
-- 7. 查询"研发部"员工的平均工资。
select avg(salary)
from emp2 e,
dept d
where e.dept_id = d.id
and d.name = '研发部';
-- 8. 查询工资比"灭绝"高的员工信息。
select *
from emp2
where salary > (select salary from emp2 where name = '灭绝');
-- 9. 查询 比平均薪资高的员工信息。
select *
from emp2
where salary > (select avg(salary) from emp2);
-- 10. 查询低于本部门平均工资的员工信息。
-- a.查询指定部门平均薪资
select avg(e1.salary) from emp2 e1 where e1.dept_id = 1;-- 部门1平均薪资
select avg(e1.salary) from emp2 e1 where e1.dept_id = 2;-- 部门2平均薪资
-- b.查询低于本部门平均工资的员工信息
select *
from emp2 e2
where e2.salary < (select avg(e1.salary) from emp2 e1 where e1.dept_id = e2.dept_id);
-- 11. 查询所有的部门信息,并统计部门的员工人数。
select d.id, d.name, (select count(*) from emp2 e where e.dept_id = d.id) '人数'
from dept d;
select count(*) from emp2 where dept_id = 1;
-- 12. 查询所有学生的选课情况,展示出学生名称,学号,课程名称
select s.name, s.no, c.name
from student s,
student_course sc,
course c
where s.id = sc.id
and sc.id = c.id;
1、多表关系