blob: 564d0566997d436050a22d40090edb90e8392433 [file] [log] [blame]
ceiling(x) - Find the smallest integer not smaller than x
Synonyms: ceil
Example:
> SELECT ceiling(-0.1) FROM src LIMIT 1;
0
> SELECT ceiling(5) FROM src LIMIT 1;
5