table: member
fields:
member_id - unique primary id
voter_id - the member_id of another record
John Doe - member_id = 1, voter_id = 0
ABC Inc. - member_id = 2, voter_id = 1 (John Doe is the voter)
I need to pull all records where the member_id never appears in the voter_id field. In this case, I need it to find member_id 2, but not member_id 1.
Thanks guys. I looked but didn't find the answer here.