European Number Formatting
440722Mar 1 2006 — edited Mar 1 2006I am trying to format a number using SQL so that it is displayed with European "delimiters": where the comma and period our reversed.
So if I have a NUMBER field in the database that is: 12345678.90
Rather than using:
SELECT TO_CHAR(12345678.90,'999,999,999,990.00')
FROM DUAL;
and getting: 12,345,678.90
I wanted to know if there is a way to use TO_CHAR to return: 12.345.678,90