How can I see the list of the stored procedures or stored functions in mysql command line like show tables;
or show databases;
commands.
相关问题
- What is the best way to cache a table from a (SQL)
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
Alternative:
will show you the stored procedures.
will show you the definition of a procedure. And
will show you all the available options for the
show
command.My preference is for something that:
Stitching together from other answers in this thread, I end up with
... which ends you up with results that look like this:
For view procedure in name wise
below code used to list all the procedure and below code is give same result as show procedure status