I created a stored procedure in phpMyAdmin
CREATE PROCEDURE Sample() SELECT * FROM feedback
Where could I view this this procedure? If it\'
select routine_definition from information_schema.routines where routine_schema = 'db_name' and routine_name = 'sp_name';