sql – Oracle Performance IN或OR

前端之家收集整理的这篇文章主要介绍了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

猜你在找的MsSQL相关文章