My question is pretty straight forward. Is it possible to create a procedure that calls multiple previously stored procedures such as:
CREATE PROCEDURE `CALL_A_B_C` ( )
NOT DETERMINISTIC MODIFIES SQL DATA SQL SECURITY DEFINER
CALL `A` ();
CALL `B`();
CALL `C`();
This code doesn't work but you get the idea. Is there a way to do this?