3
Guys like me convert an exponential number (NUMBER) to string (VARCHAR) but it is expressed equal??
Example:
SQL> SELECT TO_CHAR (NUMERO) NUMCONVERT
2 FROM (SELECT 3E4 NUMERO FROM DUAL);
NUMCONVERT
----------------------------------------
30000
How to return '3E4'??
I also tried to use this way but after it is converted gets '3.0E+04' I needed '3E4' expressed equal to the integer.
– Diego Simôes da Silva