How To Use Power Function In OraclePLSQL
Description
Power function returns m raised to the power n in Oracle/PLSQL.
Example
- Select Power (5, -2)
- from dual;
Example
- Select Power (5, 2)
- from dual;
Example
- Select Power (6.6, 3.5)
- from dual;
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.