How do I view my stored procedures in phpMyAdmin?

前端 未结 11 553
你的背包
你的背包 2020-12-12 15:57

I created a stored procedure in phpMyAdmin

CREATE PROCEDURE Sample()
SELECT * FROM feedback

Where could I view this this procedure? If it\'

11条回答
  •  情话喂你
    2020-12-12 16:53

    select routine_definition
    from information_schema.routines
    where routine_schema = 'db_name'
    and routine_name = 'sp_name';
    

提交回复
热议问题