Aqui estão alguns comandos comumente usados para encontrar o ano atual, mês atual e dia atual no MySQL.
Obtenha o ano atual no MySQL em 4 dígitos:
select year(now()) as 'current year';
ou
select date_format(now(),'%Y') as 'current year';
+----------------+ | current year | +----------------+ | 2013 | +----------------+
Obtenha o ano atual no MySQL em 2 dígitos:
select date_format(now(),'%y') as 'current year';
+----------------+ | current year | +----------------+ | 13 | +----------------+
Obter o mês atual no MySQL:
select month(now()) as 'current month';
ou