Basically not in and not exists are very similar and usually yield the same result.
A difference is that in will return false if one of the values in the set is NULL (at least, it does on Oracle), while exists only checks for existance of a record, unregarding its values.
In this specific case, you got a WHERE clause that will cause the first query to return a different result.
A third approach which is generally faster on MySQL, is to left join the table in the main query and check if the join field is NULL:
select payfrequencytypeid
from
tblpayfrequency f
left join tblcustomerpayapproval a
on a.payfrequencytype = f.payfrequencytype
where
a.payfrequencytype IS NULL
Other general tips:
- You can skip the
1 of course.
- You don't need the DISTINCT in the second query. You allow the database to choose the best optimization path if you remove that.
- Not exists is often faster in regards to in, although this also depends on the optimization path chosen by the database. You should really try this on a live server and live data to be sure.
WHEREcondition that doesn't appear anywhere in the second and selects an additional column as well. – Martin Smith Feb 16 '11 at 12:14NOT INwithNULLwill return an empty result set. – Martin Smith Feb 16 '11 at 12:20