SQRT (Azure Stream Analytics)
Eine mathematische Funktion, die die Quadratwurzel des angegebenen Floatwerts zurückgibt.
Syntax
SQRT (float_expression)
Argument
float_expression
Ein Ausdruck vom Typ float oder von einem Typ, der implizit in „float“ konvertiert werden kann. Der Wert darf nicht negativ sein.
Rückgabetyp
float
Beispiel
SELECT SQRT(input.x) AS "The SQRT of the variable x"
FROM input