CEILING (Azure Stream Analytics)

 

Published: November 1, 2015

Updated: April 22, 2016

Applies To: Azure

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

Syntax

CEILING (expression)  

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  

Show: