Dear all how can I see the list of the stored procedures or stored functions in mysql command line like show tables;
or show databases;
commands.
views:
4434answers:
3
+10
A:
show procedure status
will show you the stored procedures.
show create procedure MY_PROC
will show you the definition of a procedure. And
help show
will show you all the available options for the show
command.
unbeknown
2009-04-09 08:47:06