写了好几个页面,速度都上不去,瓶颈在于SQL查询。太多的表,太多的not in,总是从一大推表和数据中筛选出一点数据。看了很多关于SQL优化的文章,都强烈要求不要太多使用not in查询,最好用表连接来取代它。如:
select ID,name from Table_A where ID not in (select ID from Table_B)
这句是最经典的not in查询了。改为表连接代码如下:
select Table_A.ID,Table_A.name from Table_A left join Table_B on Table_A.ID=Table_B.ID and Table_B.ID is null
或者:
select Table_A.ID,Table_A.name from Table_A left join Table_B on Table_A.ID=Table_B.ID where Table_B.ID is null
经试用,效果立竿见影。
用join取代not in
Posted GodTelMe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用join取代not in相关的知识,希望对你有一定的参考价值。
以上是关于用join取代not in的主要内容,如果未能解决你的问题,请参考以下文章
Oracle,用left join 替代 exists ,not exists,in , not in,提高效率