Hier zijn een paar veelgebruikte commando's om het huidige jaar, de huidige maand en de huidige dag in MySQL te vinden.
Krijg het huidige jaar in MySQL in 4 cijfers:
select year(now()) as 'current year';
of
select date_format(now(),'%Y') as 'current year';
+----------------+ | current year | +----------------+ | 2013 | +----------------+
Haal het huidige jaar in MySQL in 2 cijfers:
select date_format(now(),'%y') as 'current year';
+----------------+ | current year | +----------------+ | 13 | +----------------+
De huidige maand ophalen in MySQL:
select month(now()) as 'current month';
of