What is the difference between the following query:
SELECT * FROM employee WHERE NOT(start_date > '01-JAN-1970');
and this query:
SELECT * FROM employee WHERE start_date < '01-JAN-1970';
Is there any difference, and if so, how is NOT(x > y) used differently from (x < y). Can anyone provide an example?
Thanks.
