Skip to content

Returns the smallest integer greater than or equal to a number. Alias for CEIL.

func.ceiling(<x>)
func.ceiling(3.2)
┌───┐
4
└───┘
CEILING(<x>)
SELECT CEILING(3.2);
┌───┐
4
└───┘