top of page
MySQL:
YEAR
Syntax:
YEAR(date)
Returns the year for date, in the range 1000 to 9999, or 0 for the
"zero" date.
URL: https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html
Example
mysql> SELECT YEAR('1987-01-01');
-> 1987
bottom of page