EXP() returns e raised to the nth power (n is the value), where e is equal to approximately 2.71828183.
SQL> Syntax:EXP(<numeric expression>) SQL> SQL> SQL> SELECT 2 EXP(10) exponent from dual; EXPONENT ---------- 22026.4658 SQL> SQL>