Hey can any one tell the equivalant of to_date of oracle. my problem is i am trying to insert data in dd/mm/yyyy format but the informix default format is set to mm/dd/yyyy
the insert statement is as follows
insert into testingdate values(to_date('20/03/2004', '%d/%m/%y'));
but some how this works
select to_char(datetest, '%d/%m/%y') from testingdate;
and returns me date in dd/mm/yy ...