I need a condition that when used with an IN condition, it won't retu any results. I initially thought this would work, but it still gives back results:
SELECT * FROM MyTable WHERE id IN (SELECT FALSE FROM dual WHERE FALSE);
Is there a condition I could put in the IN condition to have it always retu no results?
