Oninit Logo
The Down System Specialists
+1-913-674-0360
+44-2081-337529
Partnerships Contact
Finderr

-684 Function returns too many values.

The number of returned values from a function is more than the number of values that the caller expects.

Example of error:

CREATE ROUTINE testroutine(arg INT) RETURNING INT, INT; RETURN 1,2; END ROUTINE

SELECT col FROM tab WHERE col = testroutine(1); -- error