且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

PostgreSQL字符日期和UNIX时间戳转换

更新时间:2022-05-05 17:22:51

一、日期格式转换

1.字符日期格式转化为UNIX时间戳格式

字段endtime为内容为UNIX时间戳格式,例如1346650755

select * from test where endtime >= extract(epoch FROM date('2012-09-03 00:00:00'));

2.UNIX时间戳转化为字符日期格式

select * from test where date(to_timestamp(endtime))>='2012-09-02';

 


本文转自 pgmia 51CTO博客,原文链接:http://blog.51cto.com/heyiyi/986612