unix时间戳转换日期格式greenplum⽇期及时间函数及时间的加减
1.⽇期和时间间字段
date:⽇期字段,格式:2016-04-15
timestamp:时间字段,格式:2016-04-15 20:00:00
2.获取当时时间函数
select now();
select current_timestamp;
select CURRENT_TIME;
select LOCALTIME;
select LOCALTIMESTAMP;
3.获取当天⽇期
select current_date;
4.⽇期计算:
--使⽤interval
当前时间加2天
select now()+interval '2 day';
当前时间减2天
select now()-interval '2 day';
当前时间减1个⽉
select now()-interval '-2 mon';
当前时间减2⼩时
select now()+interval '2 hour';
5.时间截取
显⽰年
select extract(year from now());
显⽰⽉
select extract(mon from now());
6.时间转换
显⽰年⽉⽇时分秒
select timestamp '2012-05-12 18:54:54';
显⽰年⽉⽇
select date '2012-05-12 18:54:54';
显⽰年⽉⽇时分秒+毫秒
select TIMESTAMP WITH TIME ZONE '2012-05-12 18:54:54' ;
7.与unix时间戳的转换
SELECT TIMESTAMP 'epoch' + 1341174767 * INTERVAL '1 second';

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