码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL日期加减

时间:2019-06-19 09:55:44      阅读:678      评论:0      收藏:0      [点我收藏+]

标签:一个   day   div   sel   相加   时间   timestamp   post   字段   

在PostgreSQL中可以直接对时间进行加减运算:、
SELECT now()::timestamp + ‘1 year‘;  --当前时间加1年
SELECT now()::timestamp + ‘1 month‘;  --当前时间加一个月
SELECT now()::timestamp + ‘1 day‘;  --当前时间加一天
SELECT now()::timestamp + ‘1 hour‘;  --当前时间加一个小时
SELECT now()::timestamp + ‘1 min‘;  --当前时间加一分钟
SELECT now()::timestamp + ‘1 sec‘;  --加一秒钟
select now()::timestamp + ‘1 year 1 month 1 day 1 hour 1 min 1 sec‘;  --加1年1月1天1时1分1秒
SELECT now()::timestamp + (col || ‘ day‘)::interval FROM table --把col字段转换成天 然后相加

PostgreSQL日期加减

标签:一个   day   div   sel   相加   时间   timestamp   post   字段   

原文地址:https://www.cnblogs.com/zhncnblogs/p/11049543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!