I have a database table of email addresses. I want to query it based on a set of strings.
I do not just want the query results to return those email addresses contained in the set of strings - that would be simple.
Rather, I want to get back all of the strings used in the query, along with a Boolean field that tells me if it is in the table or not. e.g.: joe@joe.com TRUE sam@sam.com TRUE jim@jim.com FALSE
I have on solution (joining an 'In' query with a 'Not In' query) - but I was hoping for something better.
(Yes, I realize I can figure it out without the database by doing the simple query then removing the found items from the set of query strings)
SELECT email_address, "TRUE" FROM table WHERE email_address IN ('a@b.com', 'b@c.com') UNION SELECT email_address, "FALSE" FROM table WHERE email_address NOT in ('a@b.com', 'b@c.com')– Sai Jun 18 '11 at 23:12