CEILING

An alias for the CEIL function. Represents the SQLite CEILING() function, which rounds a number up to the next highest integer.

For example, CEILING(5.1) returns 6, CEILING(-5.1) returns -5, and CEILING(5.0) returns 5.

The result is returned as an integer type (Long). If the input is null or a value that cannot be converted to a number, the result is null.

Return

A KQLiteColumn of type Long with the rounded-up integer value.

Author

MOHAMMAD AZIM ANSARI

Parameters

x

The column containing the numeric value to round up.

See also