Select table_a.name from table_a where table_b.name = table_a.name & table_b.year = '2009'??
I'm having trouble explaining the issue, but here goes....
table_a
taID | Name
1 | me
2 | you
3 | someone_else
table_b
tbID | Name | Year
1 | me | 2009
2 | someone_else | 2010
So my query is:
I want to list all names from table_a regardless if they exist in table_b or not (all results), but if they do exist in table_b with the year of '2009' i want to exclude those particular ones from the result.
Thanks in advance