| title | CEILING (SSIS Expression) | ||
|---|---|---|---|
| description | CEILING (SSIS Expression) | ||
| author | chugugrace | ||
| ms.author | chugu | ||
| ms.date | 03/01/2017 | ||
| ms.service | sql | ||
| ms.subservice | integration-services | ||
| ms.topic | concept-article | ||
| helpviewer_keywords |
|
[!INCLUDEsqlserver-ssis]
Returns the smallest integer that is greater than or equal to a numeric expression.
CEILING(numeric_expression)
numeric_expression
Is a valid numeric expression.
The data type of the numeric expression submitted to the function.
CEILING returns a null result if the argument is null.
These examples apply the CEILING function to positive, negative, and zero values.
CEILING(123.74)
Returns 124.00
CEILING(-124.27)
Returns -124.00
CEILING(0.00)
Returns 0.00