| title | CEILING (Transact-SQL) | Microsoft Docs | |||
|---|---|---|---|---|
| ms.custom | ||||
| ms.date | 07/24/2017 | |||
| ms.prod | sql-non-specified | |||
| ms.prod_service | database-engine, sql-database, sql-data-warehouse, pdw | |||
| ms.service | ||||
| ms.component | t-sql|functions | |||
| ms.reviewer | ||||
| ms.suite | sql | |||
| ms.technology |
|
|||
| ms.tgt_pltfrm | ||||
| ms.topic | language-reference | |||
| f1_keywords |
|
|||
| dev_langs |
|
|||
| helpviewer_keywords |
|
|||
| ms.assetid | e736b43a-9457-4781-95a4-4bcf9d4fc46a | |||
| caps.latest.revision | 34 | |||
| author | edmacauley | |||
| ms.author | edmaca | |||
| manager | craigg | |||
| ms.workload | Active |
[!INCLUDEtsql-appliesto-ss2008-all-md]
Returns the smallest integer greater than, or equal to, the specified numeric expression.
Transact-SQL Syntax Conventions
CEILING ( numeric_expression ) numeric_expression
Is an expression of the exact numeric or approximate numeric data type category, except for the bit data type.
Returns the same type as numeric_expression.
The following example shows positive numeric, negative, and zero values with the CEILING function.
SELECT CEILING($123.45), CEILING($-123.45), CEILING($0.0);
GO [!INCLUDEssResult]
--------- --------- -------------------------
124.00 -123.00 0.00
(1 row(s) affected)