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 )
Examples
Code:
SELECT POWER(2, 10.0) AS IntegerResult
Result:
IntegerResult |
--------------+
1024|
Related Documentation
Last updated