What is the code in MySQL to show the procedures created by me?
What is the code in MySQL to show the procedures created by me?
I believe this is what you want:
SELECT ROUTINE_TYPE, ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA = 'nome do banco de dados aqui';
You might also want to list:
SHOW PROCEDURE STATUS;
And show the code:
SHOW PROCEDURE CODE;