This Oracle tutorial explains how to use the Oracle/PLSQL TO_YMINTERVAL function with syntax and examples.
The Oracle/PLSQL TO_YMINTERVAL function converts a string to an INTERVAL YEAR TO MONTH type.
The syntax for the TO_YMINTERVAL function in Oracle/PLSQL is:
The value to convert to an INTERVAL YEAR TO MONTH type. It can be a char, varchar2, nchar, or nvarchar2 value.
The TO_YMINTERVAL function returns an INTERVAL YEAR TO MONTH value.
The TO_YMINTERVAL function can be used in the following versions of Oracle/PLSQL:
Let's look at some Oracle TO_YMINTERVAL function examples and explore how to use the TO_YMINTERVAL function in Oracle/PLSQL.
For example:
The TO_YMINTERVAL function is most commonly used to add an interval to a date field. For example, you may wish to add 1 year and 5 months to an order date.
This SQL statement would return the order date, as well as the order date plus 1 year and 5 months.