Using IS NULL or IS NOT NULL on join conditions - Theory question

后端 未结 6 2391

Theory question here:

Why does specifying table.field IS NULL or table.field IS NOT NULL not work on a join condition (left or right join for instance) but only in t

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 14:28

    Your execution plan should make this clear; the JOIN takes precedence, after which the results are filtered.

提交回复
热议问题