Spec-Zone .ru
спецификации, руководства, описания, API
|
The MySQL query optimizer has different strategies available to evaluate subqueries. For IN
(or =ANY
) subqueries, the optimizer has these choices:
Semi-join
Materialization
EXISTS
strategy
For NOT IN
(or <>ANY
) subqueries, the optimizer
has these choices:
Materialization
EXISTS
strategy
The following sections provide more information about these optimization strategies.