diff --git a/MYSQL_Cheatsheet.md b/MYSQL_Cheatsheet.md index da56464..7064d3a 100644 --- a/MYSQL_Cheatsheet.md +++ b/MYSQL_Cheatsheet.md @@ -40,7 +40,7 @@ MYSQL #Tests for existence of a certain record. Returns a boolean value. SELECT * FROM TABLE NAME WHERE EXIST (SUB QUERY); - + #Inner Join selects records that have the same values in two same or distinct tables. SELECT COLUMN(S) FROM TABLENAME1 INNER JOIN TABLENAME2 ON TABLENAME1.COLUMNAME=TABLENAME2.COLUMNAME; diff --git a/VSCode_CheatSheet.md b/VSCode_CheatSheet.md index 9e1fa3e..d80646b 100644 --- a/VSCode_CheatSheet.md +++ b/VSCode_CheatSheet.md @@ -167,8 +167,15 @@ VsCode: #Jump to matching bracket Ctrl + SHIFT + \ + #Indent Line + Ctrl + ] + + #Outdent Line + Ctrl + [ + #Navigate editor group history Ctrl + SHIFT + Tab #Replace in files Ctrl+ SHIFT + H +