I have a table "USERS":
name | passwd | email
Is there any way to do following in a single query...
SELECT name FROM USERS WHERE email='input_email_1';
SELECT name FROM USERS WHERE email='input_email_2';
I mean, if I have two email_addresses, how can I fetch "name" from USERS table for both email_addresses in a single query.
Thanks in advance..