You get a bonus - 1 coin for daily activity. Now you have 1 coin

MySQL: how to get a list of stored procedures or functions

Practice



To get a list of stored procedures:

> SHOW PROCEDURE STATUS;

List of functions:

> SHOW FUNCTION STATUS;

Get the syntax (declaration) of an existing procedure:

> SHOW CREATE PROCEDURE myproc;

where instead of myproc use the procedure name

Applies to: MySQL 5.x

Comments

To leave a comment

If you have any suggestion, idea, thanks or comment, feel free to write. We really value feedback and are glad to hear your opinion.
To reply

Lectures and tutorial on "Databases - MySql (Maria DB)"

Terms: Databases - MySql (Maria DB)