PMOD
Returns the positive modulus of dividing two numbers.
Analyze Syntax
func.pmod(<x>, <y>)
Analyze Examples
func.pmod(-10, 3)
┌───┐
│ 2 │
└───┘
SQL Syntax
PMOD(<x>, <y>)
SQL Examples
SELECT PMOD(-10, 3);
┌───┐
│ 2 │
└───┘
Returns the positive modulus of dividing two numbers.
func.pmod(<x>, <y>)
func.pmod(-10, 3)
┌───┐
│ 2 │
└───┘
PMOD(<x>, <y>)
SELECT PMOD(-10, 3);
┌───┐
│ 2 │
└───┘