Skip to content

Returns the floating-point remainder of dividing two numbers.

func.fmod(<x>, <y>)
func.fmod(10.5, 3.0)
┌─────┐
1.5
└─────┘
FMOD(<x>, <y>)
SELECT FMOD(10.5, 3.0);
┌─────┐
1.5
└─────┘