CEILING (Azure Stream Analytics)

A mathematical function that returns the smallest integer greater than or equal to the specified numeric expression.

Syntax

CEILING (expression)  

Argument

expression

An expression of the exact numeric or approximate numeric data type category.

Return Types

Returns the same type as submitted in the expression.

Example

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