以下の 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.
現在、このクエリの実行には時間がかかるため、このクエリの実行を高速化する方法はありますか?