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

前端之家收集整理的这篇文章主要介绍了PostgreSQL字符日期和UNIX时间戳转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、日期格式转换

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

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

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

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

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


select uid,date(to_timestamp(insert_time)),count(*) from pubinfo where uid in (56,57,58,59,60) group by uid,date(to_timestamp(insert_time)) order by uid,date(to_timestamp(insert_time))

原文链接:https://www.f2er.com/postgresql/195573.html

猜你在找的Postgre SQL相关文章