Epoch to Readable Format in SQL statement
I have found one way to directly translate epoch to readable format for SQL statement.
select to_timestamp_tz('1970-01-01 utc', 'yyyy-mm-dd tzr')+numtodsinterval(epochcolumn,'second') from tablename
Is there any other way to do this?
Tagged:
0