Last updated 3 months ago
SQL Server
Azure Synapse Analytics
Returns the square of the specified float value. ().
SQUARE ( float_expression )
SQUARE(expr)
Code:
SELECT SQUARE (5) AS SQUARE;
Result:
SQUARE| ------+ 25.0|
SQUARE| ------+ 25|
No issues were found.
No related EWIs.