months_sub

description

Syntax

DATETIME MONTHS_SUB(DATETIME date, INT months)

Subtracts a specified number of months 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 months_sub("2020-02-02 02:02:02", 1);
  2. +--------------------------------------+
  3. | months_sub('2020-02-02 02:02:02', 1) |
  4. +--------------------------------------+
  5. | 2020-01-02 02:02:02 |
  6. +--------------------------------------+

keywords

  1. MONTHS_SUB