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;
相关推荐
计算机毕业设计小帅3 小时前
【2026计算机毕业设计】基于Springboot的Android校园周边美食汇系统
android·spring boot·课程设计
每次的天空3 小时前
Android-MVX技术总结
android
Tony Bai3 小时前
【Go开发者的数据库设计之道】07 诊断篇:SQL 性能诊断与问题排查
开发语言·数据库·后端·sql·golang
cpsvps_net4 小时前
VPS服务器锁等待超时处理,如何有效解决数据库性能瓶颈
服务器·数据库·oracle
叱咤少帅(少帅)4 小时前
DML语句
mysql
编码追梦人6 小时前
探索 Docker/K8s 部署 MySQL 的创新实践与优化技巧
mysql·docker·kubernetes
Digitally6 小时前
如何备份和恢复安卓设备2025
android
文火冰糖的硅基工坊6 小时前
[创业之路-653]:社会产品与服务的分类
大数据·数据库·人工智能
235167 小时前
【MySQL】数据库事务深度解析:从四大特性到隔离级别的实现逻辑
java·数据库·后端·mysql·java-ee
脚踏实地的大梦想家7 小时前
【LangChain】P7 对话记忆完全指南:从原理到实战(下)
数据库·langchain