Numeric Math Functions Oracle PLSQL

SQL> --POWER(x, y): Returns the result of x raised to the power y.
SQL>
SQL> select POWER(2, 1) from dual;
POWER(2,1)
----------
         2
SQL>