CALL
Description
CALL calls defined functions and stored procedures.
Precautions
The owner of a function or stored procedure, users granted the EXECUTE permission on the function or stored procedure, or users granted the EXECUTE ANY FUNCTION permission can call the function or stored procedure. System administrators have the permission to call the function or stored procedure by default.
Syntax
CALL [schema.|package.] {func_name| procedure_name} ( param_expr );
Parameters
- schema
Specifies the name of the schema where a function or stored procedure is located.
- package
Specifies the name of the package where a function or stored procedure is located.
- func_name
Specifies the name of the function or stored procedure to be called.
Value range: an existing function name.
- param_expr
Specifies a list of parameters. Use := or => to separate a parameter name and its value. This method allows parameters to be placed in any order. If only parameter values are in the list, the value order must be the same as that defined in the function or stored procedure.
Value range: an existing function parameter name or stored procedure parameter name.
The parameters include input parameters (whose name and type are separated by IN) and output parameters (whose name and type are separated by OUT). When you run the CALL command to call a function or stored procedure, the parameter list must contain an output parameter for non-overloaded functions. You can set the output parameter to a variable or any constant. For details, see Examples. For an overloaded package function, the parameter list can have no output parameter, but the function may not be found. If an output parameter is contained, it must be a constant.
Examples
-- Create a function named func_add_sql, calculate the sum of two integers, and return the result. openGauss=# CREATE FUNCTION func_add_sql(num1 integer, num2 integer) RETURN integer AS BEGIN RETURN num1 + num2; END; / -- Pass by parameter value. openGauss=# CALL func_add_sql(1, 3); -- Pass by naming tag method. openGauss=# CALL func_add_sql(num1 => 1,num2 => 3); openGauss=# CALL func_add_sql(num2 := 2, num1 := 3); -- Drop the function. openGauss=# DROP FUNCTION func_add_sql; -- Create a function with output parameters. openGauss=# CREATE FUNCTION func_increment_sql(num1 IN integer, num2 IN integer, res OUT integer) RETURN integer AS BEGIN res := num1 + num2; END; / -- Specify a constant as an output parameter. openGauss=# CALL func_increment_sql(1,2,1); -- Drop the function. openGauss=# DROP FUNCTION func_increment_sql;
Helpful Links
CREATE FUNCTION and CALL
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot