I have a table named Evrak and it has two columns which are Product_Date [timestamp(6)] and Evrak_Name[varchar2(50)]. There is a record which name is Evrak Test and Product_Date is
25-APR-12 12.00.00.000000000 PM.
When i want to run a query like ;
select * from Evrak Where Evrak.Product_Date = TO_TIMESTAMP ('25.04.2012:00:00:00','DD.MM.YYYY:HH24:MI:SS')
It does return a null record, i' ve tried to change format type and have used to_date, to_char methods but did not managed to get the record. What am i missing here ? or is there any special usage while quering a timestamp column?