CEILING
Syntax
CEILING(X)
Description
Returns the smallest integer value not less than X.
Examples
SELECT CEILING(1.23);
+---------------+
| CEILING(1.23) |
+---------------+
| 2 |
+---------------+
SELECT CEILING(-1.23);
+----------------+
| CEILING(-1.23) |
+----------------+
| -1 |
+----------------+
This page is licensed: GPLv2, originally from fill_help_tables.sql
Last updated
Was this helpful?