Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

EXP() returns e raised to the nth power (n is the numeric_expression value), where e is equal to approximately 2 71

SQL> Syntax:EXP(<numeric expression>) SQL> SQL> SQL> SELECT   2     EXP(10) exponent from dual;   EXPONENT ---------- 22026.4658 SQL> SQL>