POWER function

POWER(x, y) returns the result of x raised to the power y.


SQL> select power(2,3) from dual;

POWER(2,3)
----------
         8

SQL> select POWER(2, 1) from dual;

POWER(2,1)
----------
         2

SQL>
Home »
Oracle »
Numeric Functions » 

Related: