BIP2939
Severity
20 : ErrorMessage
An invalid attempt was made to invoke the function or procedure '<insert_0>'.Explanation
Either an attempt was made to execute a function using a CALL statement without an INTO clause or an attempt was made to execute a procedure that does not have a RETURNS clause by its name and parameters only. The invocation of a routine must match its declaration. This means functions and procedures that have RETURNS clauses must be invoked using function call syntax (name and parameters) or a CALL statement with an INTO clause. Or, if the routine is a procedure that does not have a RETURNS clause, then it must be invoked using a CALL statement without an INTO clause. A return value cannot be ignored.Response
Examine and correct the SQL program