SQUARE (Azure Stream Analytics)

 

Published: November 2, 2015

Updated: April 22, 2016

Applies To: Azure

A mathematical function that returns the square of the specified float value.

Syntax

SQUARE (float_expression)  

float_expression

Is an expression of type float or of a type that can be implicitly converted to float.

float

SELECT SQUARE(input.x) AS "The SQUARE of the variable x"  
FROM input  

Show: