CEILING: return the next integer that is larger than the number entered : CEILING « Math Functions « SQL Server / T-SQL






CEILING: return the next integer that is larger than the number entered


47> -- CEILING: return the next integer that is larger than the number entered.
48>
49> SELECT CEILING(100.234)
50> GO

--------
     101

(1 rows affected)
1>
           
       








Related examples in the same category

1.CEILING(-98.9)
2.CEILING(-98.1)