Voici quelques commandes couramment utilisées pour trouver l'année en cours, le mois en cours et le jour en cours dans MySQL.
Obtenir l'année en cours dans MySQL en 4 chiffres :
select year(now()) as 'current year';
ou
select date_format(now(),'%Y') as 'current year';
+----------------+ | current year | +----------------+ | 2013 | +----------------+
Obtenir l'année en cours dans MySQL en 2 chiffres :
select date_format(now(),'%y') as 'current year';
+----------------+ | current year | +----------------+ | 13 | +----------------+
Obtenir le mois en cours dans MySQL :
select month(now()) as 'current month';
ou alors