How To Use Exp Function In OraclePLSQL
Description
Exp function returns e raised to the power n, where e = 2.71828183
Syntax
Example
- select Exp (5)
- from Dual;
Example
- select Exp (5.3)
- from Dual;
Example
- select Exp (-5.3)
- from Dual;
Example
- select Exp (-2)
- from Dual;
Summary
Thus, we learnt, Exp function returns e raised to the power n, where e = 2.71828183 and we learnt, how to use Exp function in Oracle with the examples.