This section contains reference documentation for the CEIL function.
Rounded up to the nearest integer.
CEIL(col1)
select CEIL(12.1) AS value from ignoreMe
13
select CEIL(-12.1) AS value from ignoreMe
-12
Last updated 1 year ago