🐬
MySQL DD/MM/YYYY
Output: 15/01/2025
Riferimento Rapido
Stringa Formato
%d/%m/%Y
Output
15/01/2025
Formattare data come DD/MM/YYYY in MySQL
🐬 MySQL
SELECT DATE_FORMAT(NOW(), '%d/%m/%Y') AS formatted_date;
-- Output: 31/12/2025Parsare stringa data
🐬 MySQL (Parsing)
SELECT STR_TO_DATE('31/12/2025', '%d/%m/%Y') AS parsed_date;
-- Output: 2025-12-31Codici formato data MySQL
| Codice | Significato | Esempio |
|---|---|---|
| %d | Day of month (01-31) | 31 |
| %e | Day of month (1-31) | 31 |
| %m | Month (01-12) | 12 |
| %c | Month (1-12) | 12 |
| %Y | Year (4 digits) | 2025 |
| %y | Year (2 digits) | 25 |
| %b | Abbreviated month | Dec |
| %M | Full month name | December |
Altri formati in MySQL
DD/MM/YYYY in altri linguaggi
Documentazione Ufficiale
Per maggiori informazioni sulla formattazione date in MySQL, consulta la documentazione ufficiale: