ceil
ceil(val: numeric, [precision: const int64]?) -> float64
Returns 'val' rounded up to the given 'precision'.
Precision defaults to 0, meaning the value will be rounded to the nearest integer.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col rounded:ceil(@.temperature, 2)
Return the rounded up value of column temperature with 2 decimals
Updated 8 days ago