CREATE PROCEDURE defines a .
Required privileges
- To create a procedure, a user must have on the schema of the procedure. The user must also have privileges on all the objects referenced in the procedure body.
- To create a procedure with a , a user must have on the user-defined type.
- To resolve a procedure, a user must have at least the on the schema of the procedure.
- To , a user must have on the procedure. By default, the user must also have privileges on all the objects referenced in the procedure body. However, a
SECURITY DEFINERprocedure executes with the privileges of the user that owns the procedure, not the user that calls it. ASECURITY INVOKERprocedure executes with the privileges of the user that calls the procedure, thus matching the default behavior.
EXECUTE privilege as a default privilege at the database level, newly created procedures inherit that privilege from the database.
Synopsis
Parameters
| Parameter | Description |
|---|---|
routine_create_name | The name of the procedure. |
routine_param | A comma-separated list of procedure parameters, specifying the mode, name, and type. |
routine_body_str | The body of the procedure. For allowed contents, see . |
Examples
The following are examples of basic stored procedures. For a more detailed example of a stored procedure, see .Create a stored procedure that uses a composite-type variable
Create a :comp variable you created:
Create a stored procedure that uses OUT and INOUT parameters
The following example uses a combination of OUT and INOUT parameters to modify a provided value and output the result. An OUT parameter returns a value, while an INOUT parameter passes an input value and returns a value.
OUT parameters. A NULL value is commonly used. When calling a procedure from another routine, you should declare variables that will store the results of the OUT parameters.
Create a stored procedure that calls a procedure
The following example defines a procedure that calls thedouble_triple example procedure. The triple_result variable is assigned the result of the OUT parameter, while the double_input variable both provides the input and stores the result of the INOUT parameter.
A procedure with
OUT parameters can only be .
