🐬

MySQL Date Format DD/MM/YYYY

Output: 15/01/2025
Quick Reference
Format String
%d/%m/%Y
Output
15/01/2025

Format Date as DD/MM/YYYY in MySQL

🐬 MySQL
SELECT DATE_FORMAT(NOW(), '%d/%m/%Y') AS formatted_date; -- Output: 31/12/2025

Parse Date String

🐬 MySQL (Parsing)
SELECT STR_TO_DATE('31/12/2025', '%d/%m/%Y') AS parsed_date; -- Output: 2025-12-31

MySQL Date Format Codes

Code Meaning Example
%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

Other Formats in MySQL

DD/MM/YYYY in Other Languages

Official Documentation

For more information about date formatting in MySQL, see the official documentation:

MySQL Date Documentation →

Related Pages