mirror of
https://github.com/Erreur32/cheat.git
synced 2024-12-22 21:52:12 +01:00
Merge pull request #365 from shigemk2/check_function_mysql
Add cheatsheet for mysql
This commit is contained in:
commit
d90d509702
1 changed files with 7 additions and 1 deletions
|
@ -29,3 +29,9 @@ UPDATE tbl_name SET col1 = "example";
|
||||||
|
|
||||||
# Basic DELETE Statement
|
# Basic DELETE Statement
|
||||||
DELETE FROM tbl_name WHERE user = 'jcole';
|
DELETE FROM tbl_name WHERE user = 'jcole';
|
||||||
|
|
||||||
|
# To check stored procedure
|
||||||
|
SHOW PROCEDURE STATUS;
|
||||||
|
|
||||||
|
# To check stored function
|
||||||
|
SHOW FUNCTION STATUS;
|
||||||
|
|
Loading…
Reference in a new issue