PostgreSQL字符⽇期和UNIX时间戳转换unix时间戳转换日期格式
⼀、⽇期格式转换
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';
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))

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。