EXP(x):Returns the result of the number e raised to the power x : EXP « Numeric Math Functions « Oracle PL / SQL






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>
           
       








Related examples in the same category

1.EXP() returns e raised to the nth power (n is the value), where e is equal to approximately 2.71828183.
2.EXP: Returns e raised to a value
3.EXP(2)