select power( -5, 3 ) "Using Negatives" : POWER « Numeric Math Functions « Oracle PL / SQL
- Oracle PL / SQL
- Numeric Math Functions
- POWER
select power( -5, 3 ) "Using Negatives"
SQL>
SQL>
SQL> select power( -5, 3 ) "Using Negatives"
2 from dual
3 /
Using Negatives
---------------
-125
1 row selected.
SQL> --
Related examples in the same category