ASA SQL Reference
SQL Functions
Alphabetical list of functions
Calculates one number raised to the power of another.
POWER ( numeric-expression-1, numeric-expression-2 )
numeric-expression-1 The base.
numeric-expression-2 The exponent.
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase Compatible with Adaptive Server Enterprise.
The following statement returns the value 64.
SELECT Power( 2, 6 )