Hi
Using MySQL 4x
I have two tables
Lists and members
Now for every list that a member is a member of there is list ID in the
members table so to query a members lists I would do the following
SELECT members.EmailAddr, members.ListID
FROM members INNER JOIN lists ON members.ListID = lists.ListID
WHERE (((members.EmailAddr)="john_berman@stripped"));
So I get say
John_berman@blueyonder 3
John_berman@blueyonder 2
John_berman@blueyonder 44
And it works fine, but now I want to find which lists I'm not a member of
and would appreciate some help.
Ideally I would change the way the system works but that is not an option
Regards
John Berman