Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of Stored Procedures/Functions Mysql Command Line

How can I see the list of the stored procedures or stored functions in mysql command line like show tables; or show databases; commands.

like image 854
systemsfault Avatar asked Apr 09 '09 08:04

systemsfault


People also ask

How do I SELECT a stored procedure in MySQL?

In MySQL, it is not possible to use select from procedure in FROM clause. You can use CALL command and after that the SELECT statement can be executed. Here is the query to display records from the table using select statement after calling stored procedure.

How do I view stored procedures?

Expand Databases, expand the database in which the procedure belongs, and then expand Programmability. Expand Stored Procedures, right-click the procedure and then select Script Stored Procedure as, and then select one of the following: Create To, Alter To, or Drop and Create To. Select New Query Editor Window.


1 Answers

SHOW PROCEDURE STATUS; SHOW FUNCTION STATUS; 
like image 99
fredrik Avatar answered Oct 06 '22 12:10

fredrik