Mysql
 sql >> Database >  >> RDS >> Mysql

Ottieni l'anno corrente, il mese corrente e il giorno corrente in MySQL

Ecco alcuni comandi comunemente usati per trovare l'anno corrente, il mese corrente e il giorno corrente in MySQL.

Ottieni l'anno corrente in MySQL in 4 cifre:

select year(now()) as 'current year';

o

select date_format(now(),'%Y') as 'current year';
+----------------+
|  current year  |
+----------------+
|     2013       |
+----------------+

Ottieni l'anno corrente in MySQL in 2 cifre:

select date_format(now(),'%y') as 'current year';
+----------------+
|  current year  |
+----------------+
|       13       |
+----------------+

Ottieni il mese corrente in MySQL:

select month(now()) as 'current month';

o