select power(2,3), power(-2,3) : POWER « Numerical Math Functions « Oracle PL/SQL Tutorial






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

POWER(2,3) POWER(-2,3)
---------- -----------
         8          -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)