Provide the minimum integer value that is equal to or greater than 25.75.
SELECT CEIL(25.75); |
The CEIL() function yields the lowest integer value that is equal to or greater than a given number.
Note: This function is synonymous with the CEILING() function.
CEIL(number) |
Parameter |
Description |
number |
Necessary: A numerical value is required. |
Works in: | From MySQL 4.0 |
Provide the minimum integer value that is equal to or greater than 25.
SELECT CEIL(25); |