postgresql时间戳与时间的转换

日期转时间戳

select EXTRACT(epoch FROM CAST( now() AS TIMESTAMP))

时间戳转日期需要注意时区

SELECT TO_TIMESTAMP(1579077961.4475)

日期相关函数

date()函数
select date('2018-01-01 10:20:12')转换为2018-01-01


to_date()函数
select to_date('2020-01-12 18:47:35','yyyy-MM-dd hh24:mi:ss') ====>2020-01-12

to_timestamp()函数
select to_timestamp('2020-01-12 18:47:35','yyyy-MM-dd hh24:mi:ss')==>2020-01-12 18:47:35+08

select to_timestamp('2020-01-12','yyyy-MM-dd')===>2020-01-12 00:00:00+08

你可能感兴趣的:(postgresql,postgresql)