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;