Merge pull request #365 from shigemk2/check_function_mysql

Add cheatsheet for mysql
This commit is contained in:
Chris Allen Lane
2017-12-19 12:34:05 -05:00
committed by GitHub

View File

@ -29,3 +29,9 @@ UPDATE tbl_name SET col1 = "example";
# Basic DELETE Statement
DELETE FROM tbl_name WHERE user = 'jcole';
# To check stored procedure
SHOW PROCEDURE STATUS;
# To check stored function
SHOW FUNCTION STATUS;