Skip to content

CALL

CALL procedure_name();
Query OK, 0 rows affected (0.00 sec)

The CALL command is used to execute a stored procedure in MySQL that has been defined previously. In this syntax, procedure_name() is the name of the stored procedure to be executed. The result of the CALL command indicates whether the procedure was executed successfully without any error. The message Query OK, 0 rows affected denotes that the stored procedure was executed successfully.