POWER(x, y) gets the result of x raised to the power y. : POWER « Numerical Math Functions « Oracle PL/SQL Tutorial






The following example uses POWER() to display 2 raised to the power 1 and 3, respectively:

SQL> SELECT POWER(2, 1), POWER(2, 3) FROM dual;

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

SQL>








14.16.POWER
14.16.1.POWER(x, y) gets the result of x raised to the power y.
14.16.2.Using the POWER function
14.16.3.POWER(2, 1)
14.16.4.POWER(2, 3)
14.16.5.select power(2,3), power(-2,3)