«Back to Home

Oracle Jump Start

Topics

How To Use Exp Function In OraclePLSQL

Description
 
Exp function returns e raised to the power n, where e = 2.71828183
 
Syntax
1 

Example
  1. select Exp (5)  
  2. from Dual;  
2

Example
  1. select Exp (5.3)  
  2. from Dual;  
3


Example
  1. select Exp (-5.3)  
  2. from Dual;  
3

Example
  1. select Exp (-2)  
  2. from Dual;  
2

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.