Dear all,
I'm trying to understand how format works in TO_NUMBER function. Suppose I have the following query:
SQL> select to_number(12345678912345,999999999999999) from dual;
TO_NUMBER(12345678912345,999999999999999)
-----------------------------------------
1.2346E+13
Why TO_NUMBER function doesn't show all the 14 digits number? What does restrict it?
Best regards,
Val