mysql多表联查

目录

表关系:

1.多表联查

sql 复制代码
-- 联查两张表

-- 学生和班级信息  -- 数据不一致问题
-- 笛卡尔积
select * from student,class

-- 面试题:内联查询()和外联查询有什莫区别?

-- 等值联查 (内联查询,隐式内连接)   -- 笛卡尔积  表多数 行数量少
select * from student,class 
where student.classid = class.classid

-- inner join on(显式内连接)      -- 表少 行数数量多
select * from  student  
inner join class on student.classid = class.classid


-- 外联查询  -- 主查表的数据全部出现,从表关系条件进行拼接
-- 左外联  
-- left join  on 
select * from  class
left join  student on student.classid = class.classid

-- 右外联
-- right join on 
select * from class 
right join student on student.classid = class.classid


-- 没有班级的学生
select * from class 
right join student on student.classid = class.classid
where class.classid is null

-- 没有学生的班级
select * from  class
left join  student on student.classid = class.classid
where student.sid is null


-- union 并集 , 全链接查询, 去除重复的数据,效率低下
select * from class 
right join student on student.classid = class.classid
union
select * from  class
left join  student on student.classid = class.classid

-- union all 不去重 ,效率高
select * from class 
right join student on student.classid = class.classid
union all
select * from  class
left join  student on student.classid = class.classid

2.子查询

sql 复制代码
-- 子查询

-- 查询id最大的一个学生(使用排序+分页实现)
select * from student order by sid desc limit 1;

-- where 子查询
select * from student 
where sid = (select max(sid) from student);


-- 查询每个班下id最大的学生(使用where子查询实现)

select * from student where sid in (
	select max(sid) from student group by classid
)


-- 查询大于5人的班级名称和人数(不使用子查询)
select classname,count(*) from student,class 
where student.classid = class.classid 
group by class.classid 
having count(*) > 5

-- from 子查询
select classname,人数 from class, 
(select classid,count(*) 人数 
	from student group by classid) t1
where  t1.classid = class.classid and 人数 > 5

-- exists 子句有结果父句执行,子句没结果父句不执行
select * from teacher where exists(
	select * from student where ssex = '外星人'
)



-- some/any  all 

-- some 和 any 同一个作用的


-- 题:查询出一班成绩比二班最低成绩高的学生
select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1
and score > (
	select min(score) from sc 
	inner join student on sc.sid = student.sid
	where classid = 2
);


select score from sc 
	inner join student on sc.sid = student.sid
	where classid = 2

70.0
60.0
80.0
50.0
30.0
20.0
31.0
34.0


select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1
and (
	score > 70.0 or score > 60.0 or score > 80.0 
	or score >50 or score > 30 or score > 20
	or score > 31 or score > 34
)

select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1 and score > any (
	select score from sc 
		inner join student on sc.sid = student.sid
		where classid = 2
)


-- 题:查询出一班成绩比二班最高成绩高的学生

select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1
and score > (
	select max(score) from sc 
	inner join student on sc.sid = student.sid
	where classid = 2
);


select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1
and (
	score > 70.0 and score > 60.0 and score > 80.0 
	and score >50 and score > 30 and score > 20
	and score > 31 and score > 34
)

select DISTINCT student.* from sc 
inner join student on sc.sid = student.sid
where classid = 1 and score > all (
	select score from sc 
		inner join student on sc.sid = student.sid
		where classid = 2
)

3.逻辑语句

sql 复制代码
-- 逻辑语句
-- IF(expr1,expr2,expr3)
select * from teacher
select tid,tname,if(tsex=1,'男','女') tsex,tbirthday,taddress from teacher;

-- IFNULL(expr1,expr2)
-- expr1 字段
-- expr2 当字段为Null,要显示的默认值
select sid,sname,IFNULL(birthday,'这个学生没有生日') from student;

-- 搜索case
select tid,tname,
case tsex
	when 1 then '男'
	when 0 then '女'
	else  '外星人'
end  as tsex,
tbirthday from teacher;

-- 简单case
select tid,tname,tsex,
case
	when tsex>1 then '外星人'
	when tsex=1 then '男'
	when tsex<1 then '女'
end as tsex,
tbirthday from teacher;

select sid,cid,
case
	when score > 90 then 'A'
	when score > 80 then 'B'
	when score > 70 then 'C'
	when score > 60 then 'D'
	when score < 60 then '不及格'
end as score
from sc;

select sid,cid,
case
	when score > 90 then 'A'
	when score > 80 then 'B'
	when score > 70 then 'C'
	when score > 60 then 'D'
	when score < 60 then '不及格'
end as score
from sc;
相关推荐
熊文豪1 分钟前
时序数据库选型指南:从大数据视角看高效存储与分析
大数据·数据库·时序数据库
Lisonseekpan4 分钟前
为什么要避免使用 `SELECT *`?
java·数据库·后端·sql·mysql·oracle
Wilson Chen9 分钟前
深入理解 MySQL 事务与锁机制:从 ACID 到 Next-Key Lock 的实证之旅
java·数据库·mysql
bluetata18 分钟前
Rokid AR眼镜开发入门:构建智能演讲提词器Android应用
android·人工智能·云计算·ar·ai编程
马 孔 多 在下雨42 分钟前
手机App上的轮播图是如何实现的—探究安卓轮播图
android·智能手机
Fency咖啡1 小时前
Spring进阶 - Spring事务理论+实战,一文吃透事务
java·数据库·spring
无敌的牛1 小时前
MySQL的开始,MySQL的安装
数据库·mysql
Zxxxxxy_1 小时前
【MYSQL】增删改查
java·数据库·mysql
木辰風1 小时前
如何在MySQL中搜索JSON数据,并去除引号
数据库·mysql·json
zzhongcy1 小时前
分库分表详解,以及ShardingJDBC介绍
数据库·oracle