FMOD (Lakehouse v2)
Returns the floating-point remainder of dividing two numbers.
Analyze Syntax
Section titled “Analyze Syntax”func.fmod(<x>, <y>)Analyze Examples
Section titled “Analyze Examples”func.fmod(10.5, 3.0)
┌─────┐│ 1.5 │└─────┘SQL Syntax
Section titled “SQL Syntax”FMOD(<x>, <y>)SQL Examples
Section titled “SQL Examples”SELECT FMOD(10.5, 3.0);
┌─────┐│ 1.5 │└─────┘