Is there a way to retrieve all the data from an IN
clause?
Let's assume my table got (ID,Name):
0 Banana
1 Mango
2 Papaya
3 Lemon
and my query:
SELECT * FROM Fruits WHERE Name IN (Banana,Mango,Orange)
I Want 'Orange' to return, with an empty ID (since there's no register). How to do this?