Last updated 1 month ago
SQL Server
Azure Synapse Analytics
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;
No issues were found.
No related EWIs.