Mega Code Archive

 
Categories / Oracle PLSQL / Numeric Math Functions
 

POWER(x, y)

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>