years_add

description

Syntax

DATETIME YEARS_ADD(DATETIME date, INT years)

ADD a specified number of years from a datetime or date

The parameter date can be DATETIME or DATE, and the return type is consistent with that of the parameter date.

example

  1. mysql> select years_add("2020-01-31 02:02:02", 1);
  2. +-------------------------------------+
  3. | years_add('2020-01-31 02:02:02', 1) |
  4. +-------------------------------------+
  5. | 2021-01-31 02:02:02 |
  6. +-------------------------------------+

keywords

  1. YEARS_ADD