SQL - Scalar functions - NEXT_YEAR
The NEXT_YEAR function returns the first day of the year follows the year containing the date specified by the input.
The schema is SYSIBM.
The result of the function is DATE. If the argument can be null, the result can be null. If the argument is null, the result is the null value.
Returns the date value of the first day of the year that follows the year containing the date specified by the input.
values next_year('2007-02-18') Result: 2008-01-01