PostgreSQL之秒与日期的互转

2016/11/03 PostgreSQL 共 220 字,约 1 分钟

秒 ==> 日期(‘yyyymmdd’)

select to_char((timestamp with time zone 'epoch'+绝对秒数 * interval '1 second'),'yyyymmdd');    

select round(extract(epoch from current_timestamp::timestamp with time zone));

日期 ==> 秒

select extract(epoch from current_date);

文档信息

Search

    Table of Contents