I have a table which contains a date column. I think that the date in that column is saved in UTC.
I would like when the date is retrieved that it is printed in local time. That means when I call the date from Germany, the result should be something like this:
2015-04-29 11:24:06 +0200UTC EUROPE/BERLIN
I tried the following sql:
SELECT TO_CHAR(CAST(dateColum as TIMESTAMP WITH LOCAL TIME ZONE), 'YYYY-MM-DD HH24:MI:SS TZR') from myTable;
the result looks like this:
2015-04-29 11:24:06 EUROPE/BERLIN
+/- offset is missing.
Any idea?