🔴
Oracle SQL 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 Oracle SQL
🔴 Oracle SQL
SELECT TO_CHAR(SYSDATE, 'DD/MM/YYYY') AS formatted_date FROM dual;
-- Output: 31/12/2025Other Formats in Oracle SQL
DD/MM/YYYY in Other Languages
Official Documentation
For more information about date formatting in Oracle SQL, see the official documentation: