POWER(2,3) POWER(-2,3) MOD(8,3) MOD(13,0) : POWER « Numeric Math Functions « Oracle PL / SQL






POWER(2,3) POWER(-2,3) MOD(8,3) MOD(13,0)

 

SQL>
SQL> select power(2,3), power(-2,3)
  2  ,        mod(8,3),   mod(13,0)
  3  from   dual;

POWER(2,3) POWER(-2,3)   MOD(8,3)  MOD(13,0)
---------- ----------- ---------- ----------
         8          -8          2         13

SQL>

   
  








Related examples in the same category

1.POWER(x, y): Returns the result of x raised to the power y
2.POWER(2, 3)
3.POWER: Returns value raised to some exponential power
4.POWER(100,0.5): square root
5.select power( -5, 3 ) "Using Negatives"
6.select power( 5.2, 2.7 ) "With Reals"