标签:ext gre details 时间戳 nbsp sql string postgre 时间
--日期转时间戳
SELECT
EXTRACT(epoch
FROM
NOW());
SELECT
EXTRACT(epoch
FROM
CAST
(
‘2017-12-06 00:17:10‘
AS
TIMESTAMP
));
--时间戳转日期
SELECT
TO_TIMESTAMP(1512490630)
Postgresql中时间戳与日期的相互转换(同样适用于GreenPlum)
标签:ext gre details 时间戳 nbsp sql string postgre 时间
原文地址:https://www.cnblogs.com/xibuhaohao/p/13095918.html