Does the order of columns in a WHERE clause matter?

前端 未结 7 1639
-上瘾入骨i
-上瘾入骨i 2020-11-28 14:29

Does the order of the columns in a WHERE clause effect performance?

e.g.

Say I put a column that has a higher potential for uniqueness first or visa versa?

7条回答
  •  渐次进展
    2020-11-28 14:45

    If you are ANDing conditions the first not true will return false, so order can affect performance.

提交回复
热议问题