Home
Oracle PL / SQL
Aggregate Functions
Analytical Functions
Char Functions
Constraints
Conversion Functions
Cursor
Data Type
Date Timezone
Hierarchical Query
Index
Insert Delete Update
Large Objects
Numeric Math Functions
Object Oriented Database
PL SQL
Regular Expressions
Report Column Page
Result Set
Select Query
Sequence
SQL Plus
Stored Procedure Function
Subquery
System Packages
System Tables Views
Table
Table Joins
Trigger
User Previliege
View
XML
POWER(2, 3) : POWER « Numeric Math Functions « Oracle PL / SQL
Oracle PL / SQL
Numeric Math Functions
POWER
POWER(2, 3)
SQL> select POWER(2, 3) from dual; POWER(2,3) ---------- 8 SQL>
Related examples in the same category
1.
POWER(x, y): Returns the result of x raised to the power y
2.
POWER: Returns value raised to some exponential power
3.
POWER(100,0.5): square root
4.
select power( -5, 3 ) "Using Negatives"
5.
select power( 5.2, 2.7 ) "With Reals"
6.
POWER(2,3) POWER(-2,3) MOD(8,3) MOD(13,0)