I have a table that stores membership records. One record per member per year. eg:
MEMBER YEAR
--------------
steve 2011
steve 2010
bob 2010
jane 2011
What I'm trying to create is a list of expired members (those who have not been updated) for a given year. Something like "get all the participants who have an entry for 2010, but not for 2011."
I struggled with this for a while, and the closest examples I can find include comparing two tables.
source
share