Example
Return the smallest integer value that is greater than or equal to 25.75:
SELECT CEILING(25.75);
Definition and Usage
The CEILING() function returns the smallest integer value that is bigger than or equal to a number.
Note: This function is equal to the CEIL() function. Continue reading MySQL CEILING Function