I have a table called email from which I fetch email. The table has email in this order
Now If I make this query
SELECT * FROM email WHERE (email IN ( '[email protected]' ,'[email protected]' , '[email protected]' )) AND email!='' LIMIT 3
I get this
but I want to get result on the basis of the arguments in the IN clause
If you notice in the IN I mentioned [email protected] first,
I dont think order by clause will help me here
Any other way of solving this issue?