If your using V7.4 it doesn't but the following will create one.
CREATE OR REPLACE FUNCTION to_date(text, text)
RETURNS "timestamp" AS
'begin
return to_timestamp($1, $2);
end;'
LANGUAGE 'plpgsql' STABLE STRICT;
I am new here, just wondering if PostgreSQL has a similar function TO_DATE (‘02/12/2006’,’mm/dd/yyyy’)?
Thanks!
Jim Fu