Alias for CEIL. Rounds a number up to the nearest integer.
Same as input typeDiperbarui: 13 Jun 2026CEILING(expression)Numeric value to round up
1 SELECT 2 CEIL(2.5) as using_ceil, 3 CEILING(2.5) as using_ceiling;
Both functions produce the same result.
| using_ceil | using_ceiling |
|---|---|
| 3 | 3 |
Sudah paham CEILING? Latih langsung di browser
Latihan interaktif, langsung di browser.