Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server
Azure SQL Database
Azure SQL Managed Instance
Azure Synapse Analytics
Analytics Platform System (PDW)
SQL analytics endpoint in Microsoft Fabric
Warehouse in Microsoft Fabric
This function returns the smallest integer greater than, or equal to, the specified numeric expression.
Transact-SQL syntax conventions
CEILING ( numeric_expression )
An expression of the exact numeric or approximate numeric data type category.
The return type depends on the input type of numeric_expression:
Input type | Return type |
---|---|
float, real | float |
decimal(p, s) | decimal(38, s) |
int, smallint, tinyint | int |
bigint | bigint |
money, smallmoney | money |
bit | float |
If the result doesn't fit in the return type, an arithmetic overflow error occurs.
This example shows positive numeric, negative numeric, and zero value inputs for the CEILING
function.
SELECT CEILING($123.45), CEILING($-123.45), CEILING($0.0);
GO
Here's the result set.
--------- --------- -------------------------
124.00 -123.00 0.00
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today