Is there a statement that can drop all stored procedures in MySQL? Alternatively (if the first one is not possible), is there such thing as temporary stored procedures in My
This seems to drop the procedures...not sure about implications though
DELETE FROM mysql.proc WHERE db = 'Test' AND type = 'PROCEDURE';