Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lindulamaratunga/learn-sql-in-5-days
Master SQL Server and MySQL in Just 5 Days
https://github.com/lindulamaratunga/learn-sql-in-5-days
commands examples function functions joins mssql mysql procedure procedures queries query sql sqlserver stored syntax trigger triggers tsql view views
Last synced: 24 days ago
JSON representation
Master SQL Server and MySQL in Just 5 Days
- Host: GitHub
- URL: https://github.com/lindulamaratunga/learn-sql-in-5-days
- Owner: lindulamaratunga
- Created: 2024-07-01T18:08:23.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T19:26:44.000Z (3 months ago)
- Last Synced: 2024-10-12T07:02:59.102Z (24 days ago)
- Topics: commands, examples, function, functions, joins, mssql, mysql, procedure, procedures, queries, query, sql, sqlserver, stored, syntax, trigger, triggers, tsql, view, views
- Homepage:
- Size: 9.84 MB
- Stars: 24
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Master SQL Server and MySQL in Just 5 Days
There are 25 SQL lessons available, with most lessons applicable to both SQL Server and MySQL.
[01. Installing SQL Server 2022 and SQL Server Management Studio](https://docs.google.com/document/d/1-_PmGIuXJ4eL3l-wNVHr_SqO1ykoqqxYg2solaAxtdY/edit#heading=h.csp110b2igo3)
[02. SQL Commands and CRUD Operations in SQL (INSERT, SELECT, UPDATE, DELETE)](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2001.%20Quick%20Reference.pdf)
[03. Data Types in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2002.%20Data%20Types.pdf)
[04. Syntax in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2003.%20Syntax.pdf)
[05. DDL Commands (CREATE, ALTER, DROP, TRUNCATE) in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2004.%20Create%2C%20Modify%2C%20Delete%20%26%20List%20Tables.pdf)
[06. DESC and ASC in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2005.%20DESC%20%26%20ASC.pdf)
[07. Joining Two tables in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2006.%20How%20to%20Join%20two%20tables.pdf)
[08. Joining Three tables in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2007.%20How%20to%20Join%20three%20tables.pdf)
[09. Self Joins in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2008.%20Self%20Join.pdf)
[10. With Statement in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2009.%20With%20Statement.pdf)
[11. CROSS APPLY & OUTER APPLY in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2010.%20CROSS%20APPLY%20%26%20OUTER%20APPLY.pdf)
[12. Aggregate Functions (MAX, MIN, AVG, COUNT, SUM) in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2011.%20MAX%2C%20MIN%2C%20AVG%2C%20COUNT%2C%20SUM.pdf)
[13. ISNULL in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2012.%20ISNULL.pdf)
[14. Conditional Statements in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2013.%20Conditional%20Statements.pdf)
[15. String Functions (RTRIM, LTRIM, TRIM) in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2014.%20RTRIM%2C%20LTRIM%20%26%20TRIM%20Functions.pdf)
[16. UNION in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2015.%20UNION.pdf)
[17. Creating User Declared Functions in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2016.%20Functions.pdf)
[18. Stored Procedures in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2017.%20Stored%20Procedures.pdf)
[19. Views and Triggers in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2018.%20Views%20and%20Triggers.pdf)
[20. Sub Queries in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2020.%20Sub%20Queries.pdf)
[21. Logical Operators (IN, ANY, ALL, >=, <=, AND, OR, NOT) in SQL Server / MySQL](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2021.%20IN%2C%20ANY%2C%20ALL%2C%20AND%2C%20OR%2C%20NOT.pdf)
[22. Transactions in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2022.%20Transactions.pdf)
[23. String Concatenation & Splitting in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2023%20CONCAT%20%26%20Split%20a%20String.pdf)
[24. Understanding Collation in SQL Server](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2024.%20Collation.pdf)
[25. Practical Exercises](https://github.com/lindulamaratunga/Learn-SQL/blob/main/Lesson%2025.%20Exercises.pdf)
[26. Date Time in SQL Server](https://github.com/lindulamaratunga/Learn-SQL-in-5-Days/blob/main/Lesson%2026.%20DateTimeInSQLServer.pdf)
[27. Date Time in MySQL](https://github.com/lindulamaratunga/Learn-SQL-in-5-Days/blob/main/Lesson%2027.%20DATE%20and%20TIME%20in%20MySQL.pdf)
[28. String Functions (LOWER, UPPER, LEFT, RIGHT) in SQL Server](https://github.com/lindulamaratunga/Learn-SQL-in-5-Days/blob/main/Lesson%2028.%20String%20Functions(LOWER%2C%20UPPER%2C%20LEFT%20%26%20RIGHT)%20in%20SQL.pdf)
References for Database Ranking
[DB-Engines Ranking](https://db-engines.com/en/ranking)
[DB-Engines Ranking - Trend Popularity](https://db-engines.com/en/ranking_trend)