What is the MySQL command to view the definition of a stored procedure or function, similar to sp_helptext in Microsoft SQL Server?
sp_helptext
I know that SH
SH
If you want to know the list of procedures you can run the following command -
show procedure status;
It will give you the list of procedures and their definers Then you can run the show create procedure ;
show create procedure ;