1>.in和exist的区别
in 是把外表和内表作hash 连接,而exists是对外表作loop循环,每次loop循环再对内表进行查询。当内外表差别不是很大时,使用in和使用exist的区别不大,但是内外表差别很大时,查询大的表需要使用exist,查询小的表使用in
1:
select * from A where cc in (select cc from B)
效率低,用到了A表上cc列的索引;
select * from A where exists(select cc from B where cc=A.cc)
效率高,用到了B表上cc列的索引。
相反的
2:
select * from B where cc in (select cc from A)
效率高,用到了B表上cc列的索引;
select * from B where exists(select cc from A where cc=B.cc)
效率低,用到了A表上cc列的索引。
2>not in 与 not exist 的区别
如果查询语句使用了not in 那么内外表都进行全表扫描,没有用到索引;
而not extsts 的子查询依然能用到表上的索引。
所以无论那个表大,用not exists都比not in要快。
3>in 与 = 的结果是相同的,没有区别
数据库in和exist的区别
最新推荐文章于 2024-09-04 10:53:10 发布