POWER
Description
Returns the value of the specified expression to the specified power. (POWER in Transact-SQL).
Sample Source Pattern
Syntax
POWER ( float_expression , y ) POW(x, y)
POWER (x, y)Examples
Code:
SELECT POWER(2, 10.0) AS IntegerResultResult:
IntegerResult |
--------------+
1024|Code:
SELECT POWER(2, 10.0) AS IntegerResult;Result:
IntegerResult |
--------------+
1024|Related Documentation
Last updated
Was this helpful?