SQRT (Azure Stream Analytics)
Published: November 1, 2015
Updated: April 22, 2016
Applies To: Azure
A mathematical function that returns the square root of the specified float value.
Syntax
SQRT (float_expression)
float_expression
Is an expression of type float or of a type that can be implicitly converted to float. The value must be non-negative.
float
SELECT SQRT(input.x) AS "The SQRT of the variable x" FROM input
Show: