add_months(date date or timestamp, int month)

现在让我们使用以下查询检查 add_months(date,month) 函数。

查询

default> select add_months(date '2016-08-11',1) as months;  

上述查询将生成以下结果。

months 
------------------------------- 
2016-09-11 00:00:00

此处,从给定日期开始添加一个月。

apache_tajo_datetime_functions.html