command window truncates numbers

yonderboi

Member²
Sometimes command window truncates numbers. Here's an example:

SQL:
SQL> select 100/100000000 from dual;

100/100000000
-------------
         1E-6

SQL> select 100/123456789 from dual;

100/123456789
-------------
8.10000007371

Using e-notation, it should've been "8.100E-07" of course
 
Back
Top