There is 2 Methods to get mod (in PL/SQL)
begin
--Method1
DBMS_Output.Put_Line(mod(17,6));
--Method2
DBMS_Output.Put_Line(17 mod 6);
end;
/
My question is Which Method is better
I think Method2 is unDocumented PL/SQL Documented.
Therefore we should use Method1.