CEILING (SQL Server Compact)
SQL Server 2008
Returns the smallest integer that is greater than, or equal to, the given numeric expression.
This example uses the CEILING (SQL Server Compact 3.5) function to round off the unit price for products that are priced more than 100 dollars.
SELECT [Order ID], [Unit Price], CEILING ([Unit Price]) AS [CEILING] FROM [Order Details] WHERE [Unit Price] > 100 ORDER BY [Unit Price]
