加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

PostgreSQL的时间函数使用整理

发布时间:2020-12-13 17:45:47 所属栏目:百科 来源:网络整理
导读:PG的时间函数使用整理如下 1.获取系统时间函数 select now(); --2012-05-12 18:51:59.562+08select current_timestamp; --2012-05-12 18:52:12.062+08select current_date; --2012-05-12select current_time; --18:53:23.234+08 2.时间的计算 --使用interval
PG的时间函数使用整理如下

1.获取系统时间函数
select now();                --2012-05-12 18:51:59.562+08
select current_timestamp;    --2012-05-12 18:52:12.062+08
select current_date;         --2012-05-12
select current_time;         --18:53:23.234+08
2.时间的计算
--使用interval
select now()+interval '2 day';  --2012-05-14 20:05:32.796+08 2天后
select now()-interval '2 day';  --2012-05-10 20:07:23.265+08 2天前
select now()+interval '2 hour'; --2012-05-12 22:06:38.375+08 2小时后
....

interval可以不写,其值可以是
Abbreviation  Meaning
Y             Years
M             Months (in the date part)
W             Weeks
D             Days
H             Hours
M             Minutes (in the time part)
3.时间的截取
--使用extract extract(interval,timestamp);
select extract(year from now());  --2012
select extract(mon from now());     --5 5月份
...

interval值参考上面
4.时间的转换
select timestamp '2012-05-12 18:54:54';  --2012-05-12 18:54:54
select date '2012-05-12 18:54:54';       --2012-05-12
select time  '2012-05-12 18:54:54';      --18:54:54
select TIMESTAMP WITH TIME ZONE '2012-05-12 18:54:54'   
--2012-05-12 18:54:54+08

--与unix时间戳的转换
SELECT TIMESTAMP 'epoch' + 1341174767 * INTERVAL '1 second'; 
--2012-07-01 20:32:47
以上是基本的PG函数使用,可满足一般的开发运维应用

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读