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