This Oracle tutorial explains how to use the Oracle/PLSQL ADD_MONTHS function with syntax and examples.
The Oracle/PLSQL ADD_MONTHS function returns a date with a specified number of months added.
The syntax for the ADD_MONTHS function in Oracle/PLSQL is:
ADD_MONTHS( date1, number_months )
The starting date (before the n months have been added).
The number of months to add to date1.
The ADD_MONTHS function returns a date value.
The ADD_MONTHS function can be used in the following versions of Oracle/PLSQL:
Let's look at some Oracle ADD_MONTHS function examples and explore how to use the ADD_MONTHS function in Oracle/PLSQL.
For example:
ADD_MONTHS('01-Aug-03', 3)
Output: '01-Nov-03'
ADD_MONTHS('01-Aug-03', -3)
Output: '01-May-03'
ADD_MONTHS('21-Aug-03', -3)
Output: '21-May-03'
ADD_MONTHS('31-Jan-03', 1)
Output: '28-Feb-03'