I want to exclude all dates from my query and get data from 01-JAN-14 to 31-JAN-14.
SELECT * FROM SCHEMA.SELLING WHERE ( SELLDATE < '01-JAN-14' OR SELLDATE > '31-JAN-14')
Note: This query maybe written using different ways, but I want to specifically know how to exclude.
Right now above query is getting data which does not fall into that range.
1 LEDTV 1/1/2010
2 BLURAY 8/3/2011