MySQL 8.4 Release Notes
27.2.3 存储例程元数据
To obtain metadata about stored routines:
-
Query the
ROUTINES
table of theINFORMATION_SCHEMA
database. See Section 28.3.30, “The INFORMATION_SCHEMA ROUTINES Table”. -
Use the
SHOW CREATE PROCEDURE
andSHOW CREATE FUNCTION
statements to see routine definitions. See Section 15.7.7.10, “SHOW CREATE PROCEDURE Statement”. -
Use the
SHOW PROCEDURE STATUS
andSHOW FUNCTION STATUS
statements to see routine characteristics. See Section 15.7.7.29, “SHOW PROCEDURE STATUS Statement”. -
Use the
SHOW PROCEDURE CODE
andSHOW FUNCTION CODE
statements to see a representation of the internal implementation of the routine. See Section 15.7.7.28, “SHOW PROCEDURE CODE Statement”.