Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 350 Bytes

File metadata and controls

31 lines (22 loc) · 350 Bytes
description
This section contains reference documentation for the CEIL function.

ceil

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