I wrote following simple select query to fetch data, which is greater than the particular given date.
select *
from XVIIX.emp_tasks
where TASK_START_DATE > to_Date('30-MAR-18','DD-MM-YYYY');
But the result is not what is expected from that.
Can someone explain me what is the root cause for this behavior?