表结构:
A表有200w数据
B表有1000条数据
select from B where cid = 1 的结果集是(1,3,5,10) ,不管cid=,结果集都在10以内。
对比以下三个sql的执行效率:
SQL1:select a.* from A,B where a.bid = b.id and b.cid = 1
SQL2:select from A where a.bid in (select from B where cid = 1)
SQL3:select * from A where a.bid in (1,3,5,10)
很想知道两个表关联的sql 应该如何写最佳。
头一条:
in 子查询会被优化为exists
全选复制放进笔记explain extended select from A where a.bid in (select from B where cid = 1);
show warnings;
note: 这里明显楼主给错了sql, in里应该是 select id from B...
你可以看到, 此sql被优化为(手写, 未实际验证):
select * from A where exists (select 1 from B where a.bid =b.id and cid = 1)
这样本来应该是 从in子查询中拿到10条数据, 去a表走索引查询, 变为:
遍历a表, 对每条记录去 过exists
按你的表记录数, 由 10(in子查询结果集) X 1(a表过索引), 变为: 200w(遍历a表) X 1(b表过索引)
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。