日期运算函数
ADD_MONTHS(d,n)
--时间点d再加上n个月
ex.
select sysdate, add_months(sysdate,2) aa from dual;
SYSDATE AA
---------- ----------
21-SEP-07 21-NOV-07