VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Functions / Mathematical Functions / CEILING
In This Topic
CEILING
In This Topic
Returns the next highest integer that is greater than or equal to the specified numeric expression.



Example

SELECT CEILING(-3.14);

RETURNS: -3

SELECT CEILING(3.14);

RETURNS: 4
See Also