A mathematical function that returns the smallest integer greater than or equal to the given numeric expression.
CEILING(numeric_expression)
Returns the same type as numeric_expression.
This example shows positive numeric, negative, and zero values with the CEILING function.
SELECT CEILING($123.45), CEILING($-123.45), CEILING($0.0)
GO
  
Here is the result set:
--------- --------- -------------------------- 
124.00    -123.00    0.00                     
  
(1 row(s) affected)
  
| System Functions |