This section describes stored procedures for Cloud SQL instances.
A stored procedure contains SQL code that you can reuse.
To execute a stored procedure, you use the CALL
command and replace the
following variable:
- procedure_name is the name of the stored procedure.
CALL procedure_name(parameters);For more information, see the CALL reference page.
To create your own stored procedure, see CREATE PROCEDURE.