I am looking for result 0123.56 and the following query should have worked.
SQL> select to_number(123.56,'0999.99') from dual;
select to_number(123.56,'0999.99') from dual
*
ERROR at line 1:
ORA-01722: invalid number
SQL>
But it doesn't. What am I doing wrong here?
