我正在尝试找出一种优化以下 SQL 查询的方法:
select * from SOME_TABLE
where (col1 = 123 and col2 = 'abc')
or (col1 = 234 and col2 = 'cdf')
or (col1 = 755 and col2 = 'cvd') ---> I have around 2000 'OR' statements in a single query.
目前这个查询需要很长时间才能执行,那么有没有办法让这个查询运行得更快呢?