How do I view my stored procedures in phpMyAdmin?

前端 未结 11 548
你的背包
你的背包 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:55

    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.
    

提交回复
热议问题