drew1234567890
Programmer
Hi All,
I'm hoping that there is an SQL keyword (e.g. "<KEYWORD>" such that the following statements are all equivalent:
Anyone have any ideas on this?
TIA,
Drew
I'm hoping that there is an SQL keyword (e.g. "<KEYWORD>" such that the following statements are all equivalent:
Code:
SELECT * FROM Table
SELECT * FROM Table WHERE (Field IS NULL OR Field IS NOT NULL)
SELECT * FROM Table WHERE Field = <KEYWORD>
SELECT * FROM Table WHERE Field IN (<KEYWORD>)
Anyone have any ideas on this?
TIA,
Drew