SQL Server 上的性能是否可能存在差异:
where (anothercolumn=17) OR (anothercolumn=23) OR (anothercolumn=33)
和
where anothercolumn IN (17,23,33)
SQL Server 上的性能是否可能存在差异:
where (anothercolumn=17) OR (anothercolumn=23) OR (anothercolumn=33)
和
where anothercolumn IN (17,23,33)