© 2025 by The Clinic. Powered and secured by Wix
Syntax:CEILING(X)Returns the smallest integer value not less than X.
mysql> SELECT CEILING(1.23); -> 2mysql> SELECT CEILING(-1.23); -> -1