Last updated 1 year ago
Returns the value of the specified expression to the specified power. ().
POWER ( float_expression , y )
POW(x, y) POWER (x, y)
Code:
SELECT POWER(2, 10.0) AS IntegerResult
Result:
IntegerResult | --------------+ 1024|
SELECT POWER(2, 10.0) AS IntegerResult;