How to convert a unix_timestamp integer to time in readable text.
Such as:
timestamp|integer|not null default 0
select timestamp from table limit 1;
1541001600
1541001600 should be converted to Thu Nov 1 00:00:00 CST 2018
PostgreSQL 8.0.2
You can use
to_timestamp()
in postgresql.Refer Link for more details
For 8.0: