Hello, since to_char() function
will no longer be available from PostgreSQL 8.1 ... I might need to change
that from my scripts.
For example I had something like
that, which you can see returns the day in the format I need:
SELECT TO_CHAR(some_date,
'DD-MM-YYYY') FROM some_table;
Is there anyway to do that without
TO_CHAR?
|