1. 程式人生 > >postgreSQL日期加減

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欄位轉換成天 然後相加