🐘

PostgreSQL Date Format DD/MM/YYYY

Output: 15/01/2025
Quick Reference
Format String
DD/MM/YYYY
Output
15/01/2025

Format Date as DD/MM/YYYY in PostgreSQL

🐘 PostgreSQL
SELECT TO_CHAR(NOW(), 'DD/MM/YYYY') AS formatted_date; -- Output: 31/12/2025

Parse Date String

🐘 PostgreSQL (Parsing)
SELECT TO_DATE('31/12/2025', 'DD/MM/YYYY') AS parsed_date; -- Output: 2025-12-31

PostgreSQL Date Format Codes

Code Meaning Example
DD Day of month (01-31) 31
MM Month (01-12) 12
YYYY Year (4 digits) 2025
YY Year (2 digits) 25
Mon Abbreviated month Dec
Month Full month name December

Other Formats in PostgreSQL

DD/MM/YYYY in Other Languages

Official Documentation

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

PostgreSQL Date Documentation →

Related Pages