CEIL()
CEIL(number)This function rounds a given floating-point number up to the next higher integer. It’s an alias to CEILING().
SELECT CEIL(1), CEIL(1.1); +---------+-----------+ | CEIL(1) | CEIL(1.1) | +---------+-----------+ | 1 | 2 | +---------+-----------+