SQL Modulo (Rest) Operator

-- returns 1 which is remainder
SELECT 10 % 3 AS result;
SAMER SAEID