For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 updated

Was this helpful?