标签:分析 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 会用到索引
这篇(表扫描问题)
另外一篇(索引问题)
标签:分析 html target nbsp net www. iba div blank
原文地址:https://www.cnblogs.com/Cengjianwei/p/10750191.html