SQL Server/T-SQL/Math Functions/CEILING — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:20, 26 мая 2010

CEILING(-98.1)

1> SELECT CEILING(-98.1)
2> GO
-----
  -98
(1 rows affected)
1>



CEILING(-98.9)

2> SELECT CEILING(-98.9)
3> GO
-----
  -98
(1 rows affected)



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>