«Back to Home

Oracle Jump Start

Topics

How To Use Power Function In OraclePLSQL

Description
 
Power function returns m raised to the power n in Oracle/PLSQL.
 
Syntax
1 

Example
  1. Select Power (5, -2)  
  2. from dual;  
3

Example 
  1. Select Power (5, 2)  
  2. from dual;  
2

Example
  1. Select Power (6.6, 3.5)  
  2. from dual;  
 4

Summary
Thus we, learnt, Power function returns m raised to the power n in Oracle/PLSQL. We learnt, how to use this function in Oracle with the example.