MYSQL command to view and delete the stored procedure
Posted In:
Stoed procedure view and delete commands
.
By Webdevelopmentlogics
We can view the single procedure using the command SHOW CREATE PROCEDURE proc_name;
To delete the procedure - DROP PROCEDURE proc_name;
To view all the procedures - SHOW PROCEDURE STATUS;