WHERE clause better execute before IN and JOIN or after

前端 未结 5 1487
感动是毒
感动是毒 2020-11-30 02:12

I read this article: Logical Processing Order of the SELECT statement

in end of article has been write ON and JOIN clause consider before WHERE.

Consider we

5条回答
  •  执念已碎
    2020-11-30 02:51

    There is no defined order. The SQL engine determines what order to perform the operations based on the execution strategy chosen by its optimizer.

提交回复
热议问题