ADD_MONTHS function (extension)
Syntax
ADD_MONTHS ( date_expression, integer_expression )
Description
The scalar function ADD_MONTHS adds to the date value specified by the date_expression, the given number of months specified by integer_expression and returns the resultant date value.
Example
SELECT *
FROM customer
WHERE ADD_MONTHS (start_date, 6) > SYSDATE ;
Notes