CEILING
Returns the smallest integer greater than or equal to a number. Alias for CEIL.
Analyze Syntax
func.ceiling(<x>)
Analyze Examples
func.ceiling(3.2)
┌───┐
│ 4 │
└───┘
SQL Syntax
CEILING(<x>)
SQL Examples
SELECT CEILING(3.2);
┌───┐
│ 4 │
└───┘