Introduction
We use EXCEPT to find rows in one list that are not in another. MySQL does not have EXCEPT, so we use other ways to get the same result.
You want to find customers who bought product A but not product B.
You want to list employees who attended training last year but not this year.
You want to find emails in one list that are missing from another list.
You want to compare two sets of data and find what is unique to the first set.