DIVIDE (Lakehouse v2)
Returns the result of dividing one number by another.
Analyze Syntax
Section titled “Analyze Syntax”func.divide(<x>, <y>)Analyze Examples
Section titled “Analyze Examples”func.divide(10, 3)
┌────────────────────┐│ 3.3333333333333335 │└────────────────────┘SQL Syntax
Section titled “SQL Syntax”DIVIDE(<x>, <y>)SQL Examples
Section titled “SQL Examples”SELECT DIVIDE(10, 3);
┌────────────────────┐│ 3.3333333333333335 │└────────────────────┘