Conversion Functions Oracle PLSQL Tutorial

You can provide an optional format that indicates the format of x.
The structure format depends on whether x is a number or date.
The following example converts 12345.67 to a string:

SQL> SELECT TO_CHAR(12345.67) FROM dual;
TO_CHAR(
--------
12345.67
SQL>