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