I have the table that has a record with the value 23-JUL-13
for contact_date
(Date type).
I tried to run this query:
select * from mytable
where contact_date >= to_date('25-JUL-2012', 'dd-MON-yyyy')
I was expecting the above record to be returned.
Anything wrong here? Confused!