摘要: 小表驱动大表是优化器从成本考虑后做出的选择 判断谁做小表时,是比较算上过滤条件后的字段+条数的总大小 小表驱动大表在执行计划中体现,第一行是小表第二行是大表。不是在show warning
摘要:
小表驱动大表是优化器从成本考虑后做出的选择
判断谁做小表时,是比较算上过滤条件后的字段+条数的总大小
小表驱动大表在执行计划中体现,第一行是小表第二行是大表。不是在show warnings体现
left join时右表过滤条件在where,优化器会转为inner join小表驱动大表。
left join时右表过滤条件在on,优化器不会优化成小表驱动大表,因为无法转为inner join,所以要自己把小表放左边,大表放右边
inner join时优化器会自动小表驱动大表
course–100条数据
student_info–100w条数据
优化器会选择小表驱动大表(这里表指的是算上过滤条件的表)
`EXPLaiNSELECT a.*,b.* FROM `course` a JOIN `student_info` b ON a.`course_id`=b.`course_id`
EXPLAIN SELECT a.* FROM `student_info` a JOIN `course` b ON a.`course_id`=b.`course_id`
加上过滤student_info的条件
EXPLAINSELECT a.*,b.* FROM `course` a JOIN `student_info` b ON a.`course_id`=b.`course_id` WHERE b.`student_id`=1
执行计划改变,由小表student_info驱动大表course,得出优化器先走where后join的结论。
查看优化器优化后的sql
show warnings
from atguigudb1
.course
a
join atguigudb1
.student_info
b
where ((atguigudb1
.a
.course_id
= atguigudb1
.b
.course_id
) and (atguigudb1
.b
.student_id
= 1))
left join时右表过滤条件在where,优化器会转为inner join小表驱动大表。
EXPLAINSELECT a.*,b.* FROM `course` a LEFT JOIN `student_info` b ON a.`course_id`=b.`course_id` WHERE b.`student_id`=1
查看优化器优化后的sql
show warnings
FROM atguigudb1
.course
a
JOIN atguigudb1
.student_info
b
WHERE ((atguigudb1
.a
.course_id
= atguigudb1
.b
.course_id
) AND (atguigudb1
.b
.student_id
= 1))
来源地址:https://blog.csdn.net/qq_39331255/article/details/131192562
--结束END--
本文标题: mysql小表驱动大表
本文链接: https://lsjlt.com/news/426646.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0