FLOOR (Azure Stream Analytics)

 

Published: November 2, 2015

Updated: April 22, 2016

Applies To: Azure

A mathematical function that returns the largest integer less than or equal to the specified numeric expression.

Syntax

FLOOR (expression)  

expression

Is an expression of the exact numeric or approximate numeric data type category.

Returns the same type as submitted in expression.

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

Show: