I created a stored procedure in phpMyAdmin
CREATE PROCEDURE Sample() SELECT * FROM feedback
Where could I view this this procedure? If it\'
show procedure status; -- will show you the stored procedures. show create procedure MY_PROC; -- will show you the definition of a procedure. help show; -- show all the available options for the show command.