FLOOR (Lakehouse v1)
Rounds the number down.
Analyze Syntax
Section titled “Analyze Syntax”func.floor( <x> )Analyze Examples
Section titled “Analyze Examples”func.floor(1.23)
┌──────────────────┐│ func.floor(1.23) │├──────────────────┤│ 1 │└──────────────────┘SQL Syntax
Section titled “SQL Syntax”FLOOR( <x> )SQL Examples
Section titled “SQL Examples”SELECT FLOOR(1.23);
┌─────────────┐│ floor(1.23) │├─────────────┤│ 1 │└─────────────┘