MySQLで現在の年、現在の月、現在の日を検索するためによく使用されるコマンドを次に示します。
MySQLで現在の年を4桁で取得します:
select year(now()) as 'current year';
または
select date_format(now(),'%Y') as 'current year';
+----------------+ | current year | +----------------+ | 2013 | +----------------+
MySQLで現在の年を2桁で取得します:
select date_format(now(),'%y') as 'current year';
+----------------+ | current year | +----------------+ | 13 | +----------------+
MySQLで今月を取得する:
select month(now()) as 'current month';
また