Calculates one number raised to the power of another.
POWER ( numeric-expression1, numeric-expression2 )
numeric-expression2 The exponent.
The following statement returns the value 64.
SELECT Power( 2, 6 ) FROM iq_dummy
Raises numeric-expression1 to the power numeric-expresson2.