The ceil functions allows you to round up any number to the next integer.
For example:
ceil(6.02) |
would return 7 |
ceil(7.59) |
would return 8 |
See Round to round numbers to a particular decimal place
See Floor to round a number down to the nearest integer.
Ceil – Oracle SQL Function