前端之家收集整理的这篇文章主要介绍了
sql – Oracle Performance IN或OR,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
oracle中的哪个运算符可以提供更好的IN或OR
性能
例如:
select * from table where y in (1,2,3)
要么
select * from table where y = 1 or y = 2 or y = 3
原文链接:https://www.f2er.com/mssql/79502.html