Syntax:CEILING(X)Returns the smallest integer value not less than X.
mysql> SELECT CEILING(1.23); -> 2mysql> SELECT CEILING(-1.23); -> -1