Apache Pinot Docs
latest
Search
⌃K

ceil

This section contains reference documentation for the CEIL function.
Rounded up to the nearest integer.

Signature

CEIL(col1)

Usage Examples

select CEIL(12.1) AS value
from ignoreMe
value
13
select CEIL(-12.1) AS value
from ignoreMe
value
-12
Last modified 1yr ago