SQLのWHERE条件

ANDで繋がってるWHEREの条件は左から右に順番に見ていくので、とてつもなく大きなデータを抽出する場合はより結果の絞れる条件を左に持ってくると良い。ということだと思う。
実際やってみたけど、自分の条件ではあまり変わらなかった。。

Queries with all operations on the WHERE clause connected by ANDs are processed from the left to right. So, if a operation returns false, all other operations in the right side of it are ignored, because they can’t change the AND result anyway. It is better then to start your WHERE clause with the operations that returns false most of the time.

https://medium.com/tech-talk/f834f09bafaf