将查询与"IN clause"与"="一起使用



需要建议,因为由于性能改进,我需要将所有循环查询转换为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);

为了提高性能,我想将这些查询转换为IN子句,如下所示。。

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的方法很好,并且与原始逻辑等效。

相关内容

  • 没有找到相关文章

最新更新