在PostgreSQL中添加一年

时间:2014-10-16 08:46:21

标签: sql postgresql

select current_date

将返回

Date
----
2014-10-16

有没有任何功能或方法可以使用 next 年来获得相同的daymonth,I.e

next_year_date
----
2015-10-16

1 个答案:

答案 0 :(得分:1)

select 
(current_date + interval  '1 year')::date next_year_date

或者

select 
date (now()::date + interval '1 year') next_year_date

Date/Time Functions and Operators