问题描述
需要建议,因为由于性能提高,我需要将所有循环查询都转换为IN子句。 我关注的条件可能会因迭代而异。
Where recordID=2323 and (origin=626 or destination=319);
Where recordID=2323 and (origin=319 or destination=789);
Where recordID=2323 and (origin=567 or destination=989);
Where recordID=2323 and (origin=767 or destination=626);
Where recordID=2323 and (origin IN(626,319,567,767) or destination IN (319,789,989,626));
我的问题是两种方法的结果计数会相同吗? 还有其他方法或其他方式可以做到这一点。
问题是与每种方法相比,我的最终数字并不陌生。
解决方法
不幸的是,没有一种很棒的方法可以优化带有or
条件的不同列的查询。如果查询很简单,则可以使用union all
:
select t.*
from t
where recordID = 2323 and origin = 626
union all
select t.*
from t
where recordID = 2323 and destination = 319 and origin <> 626;
此版本的查询可以使用两个索引:
-
(recordID,origin)
-
(recordID,destination,origin)
编辑:
如果您不关心性能,那么使用in
的方法就可以了-相当于您的原始逻辑。