I have a question regarding Simple SQL - Where Clause Performance Page 99.
There are four ways to perform the same query: NOT EXISTS, NOT IN (uncorrelated), NO IN (correlated), and LEFT OUTER JOIN with an IS NULL test.
Assuming keys are indexed, the fasted query is the one which does not need to retrieve the cart rows. This is the LEFT OUTER JOIN example, correct?
Thanks








Bookmarks