From 71680c65861f9555fa5e8d04139244b42d360fcf Mon Sep 17 00:00:00 2001 From: Michihito Shigemura Date: Tue, 28 Nov 2017 22:12:20 +0900 Subject: [PATCH] Add cheatsheet for mysql check stored procedure or stored function in mysql --- cheat/cheatsheets/mysql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cheat/cheatsheets/mysql b/cheat/cheatsheets/mysql index 9ad46d9..3ef2a2c 100644 --- a/cheat/cheatsheets/mysql +++ b/cheat/cheatsheets/mysql @@ -28,4 +28,10 @@ INSERT INTO tbl_name (col1,col2) VALUES(15,col1*2); UPDATE tbl_name SET col1 = "example"; # Basic DELETE Statement -DELETE FROM tbl_name WHERE user = 'jcole'; \ No newline at end of file +DELETE FROM tbl_name WHERE user = 'jcole'; + +# To check stored procedure +SHOW PROCEDURE STATUS; + +# To check stored function +SHOW FUNCTION STATUS;