Zde je několik běžně používaných příkazů k nalezení aktuálního roku, aktuálního měsíce a aktuálního dne v MySQL.
Získejte aktuální rok v MySQL ve 4 číslicích:
select year(now()) as 'current year';
nebo
select date_format(now(),'%Y') as 'current year';
+----------------+ | current year | +----------------+ | 2013 | +----------------+
Získejte aktuální rok v MySQL ve 2 číslicích:
select date_format(now(),'%y') as 'current year';
+----------------+ | current year | +----------------+ | 13 | +----------------+
Získejte aktuální měsíc v MySQL:
select month(now()) as 'current month';
nebo