EXP(x):Returns the result of the number e raised to the power x
SQL> --EXP(x):Returns the result of the number e raised to the power x, --where e is approximately 2.71828183. SQL> SQL> select EXP(1) from dual; EXP(1) ---------- 2.71828183 SQL>