码迷,mamicode.com
首页 > 其他好文 > 详细

exists与in效率分析

时间:2019-04-22 15:16:04      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:分析   html   target   nbsp   net   www.   iba   div   blank   

 

--A表大,B表小,效率高
select * from A where ID in (select ID from B)

--A表小,B表大,效率高
select * from A as TA where exists(select 1 from B as TB where TB.ID = TA.ID)

--not in 全表扫描
--not exists 会用到索引

这篇(表扫描问题)

另外一篇(索引问题)

exists与in效率分析

标签:分析   html   target   nbsp   net   www.   iba   div   blank   

原文地址:https://www.cnblogs.com/Cengjianwei/p/10750191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!