FLOOR (Lakehouse v2)
Returns the largest integer less than or equal to a number.
Analyze Syntax
Section titled “Analyze Syntax”func.floor(<x>)Analyze Examples
Section titled “Analyze Examples”func.floor(3.7)
┌───┐│ 3 │└───┘SQL Syntax
Section titled “SQL Syntax”FLOOR(<x>)SQL Examples
Section titled “SQL Examples”SELECT FLOOR(3.7);
┌───┐│ 3 │└───┘