postgres timestamp转换器
时间: 2023-09-04 14:16:02 浏览: 112
在 PostgreSQL 中,可以使用以下方式将时间戳转换为可读格式:
```sql
SELECT to_char(timestamp 'epoch' + your_timestamp_column * interval '1 second', 'YYYY-MM-DD HH24:MI:SS') AS readable_timestamp FROM your_table;
```
其中,`your_timestamp_column` 是包含时间戳的列名,`readable_timestamp` 是转换后的可读格式。可以根据需要修改日期时间格式。
阅读全文