Open In App

30 Days of SQL – From Basic to Advanced Level!

Improve
Improve
Like Article
Like
Save
Share
Report

Structured Query Language or SQL is a standard database language that is used to create, maintain, destroy, update and retrieve the data from relational databases like MySQL, Oracle, SQL Server, PostgreSQL, etc.

30-Days-of-SQL-From-Basic-to-Advanced-Level

Whether you want to become a successful Data Scientist or a Business Analyst or a full-stack web developer or even a software developer, learning and practicing SQL is very important for all fields. Almost every big tech company uses SQL to manage and organize data be it Uber, Netflix, Airbnb, Facebook, Google, LinkedIn, or any other, SQL is everywhere. SQL is also the top and most popular language among data scientists or data engineers. Despite lots of hype around NoSQL, Hadoop, and other technologies, it’s one of the most-used languages in the entire tech industry, and one of the most popular languages for developers of all sorts.

Now that we know, how much learning SQL is important or what is the significance of SQL in today’s world, we shall know how to learn SQL in a systematic way. To help you with this we have created a practical roadmap of 30 days of SQL based on a lot of study and research. This roadmap will give you a complete guideline with reference to learning and practicing SQL for all types of job roles be it, Full Stack Developer, using SQL to retrieve information from the database, or Data Scientist/Data Analyst using SQL to understand the dataset and then analyzing it for different models. All you just need is a laptop, a working internet connection, determination to solve problems regularly and within 30 days, you will be able to learn and apply SQL to real-life problems and crack the interviews. 

Considering the depth of this topic, we would be requiring 30 days to learn SQL from the beginning to the advanced level. Stay committed to the roadmap and solve as many questions as you can solve daily to maintain consistency. Also, if you wish to get a good placement in the company then this Geeksforgeeks SQL Foundation – Self-Paced course is perfect as it will help you to solve each and every query from the scratch.

Day 1 to Day 6:

Start with the basic concepts: From Day 1 to Day 6, you’ll be knowing the basic database and SQL concepts such as creating a database, SELECT Clause, etc. 

Day 7 to Day 12:

From Day 7 to Day 12, you’ll take a step forward and learn a few advanced concepts like nested queries, wildcard operators, and other clauses.

  • WITH Clause: Understanding the concept of with clause and using it to give the sub-query block a name.
  • FETCH Clause: It will fetch the filtered data based upon certain conditions like fetching only the top 3 rows.
  • Arithmetic Operators: Using arithmetic operators to filter the data conveniently and precisely.
  • Wildcard Operators: To intelligently select the exact data like names starting or ending with T.
  • UPDATE Statement:  Updating certain data entries based upon the condition provided.
  • ALTER Table: Adding, dropping, or modifying the table based on the given condition.
  • LIKE Clause: It will follow the pattern given on the condition for search.
  • BETWEEN and IN operator:  It will select the data range between or in the given condition.
  • CASE Statement: It will check for the conditionals and will query the data as per the respective case.
  • EXISTS: It will form the nested query to filter out the data which exists in another query.

Day 13 to Day 18:

From Day 13 to Day 18, you’ll be mainly learning the Aggregate functions in SQL.

  • DISTINCT Clause: It will select only the distinct data, not repetitive.
  • Count Function: Returns the total count of the data filtered.
  • Sum Function: Return the sum of all the data being queried.
  • Average Function: Return the average of all the data being queried.
  • Minimum Function: It will return the minimum data from the whole data that is being queried.
  • Maximum Function: It will return the maximum data from the whole data that is being queried.
  • ORDER BY: This statement will order the queried data as per your convenience in ascending or descending order.
  • GROUP BY: This statement will group all your queried data with the column given in the condition.
  • ALL and ANY Clause: They are logical operators in SQL and return boolean values as a result.
  • TOP Clause: Used to fetch the limited number of rows from a database.

Day 19 to Day 24:

From Day 19 to 24, you’ll be learning and practicing the Joins in SQL. It is one of the most important concepts of SQL. 

  • Union Clause: Just like the mathematical union operator, this clause will make the union of the tables given.
  • Intersection Clause: It will join the two or more tables where they are intersecting.
  • Aliases: It will give an alias to the table which we can refer to later.
  • Cartesian Join and Self Join: Sometimes to query out some data, we have to self join the table to itself.
  • Inner, Left, Right and Full Joins: These four types of joining comes into play when we have to join one table with another. Look upon their syntax and learn to deal with these joins.
  • Division Clause: Division is typically required when you want to find out entities that are interacting with all entities of a set of different types of entities.
  • Using Clause: If several columns have the same names but the datatypes do not match, the NATURAL JOIN clause can be modified with the USING clause to specify the columns that should be used for an EQUIJOIN.
  • Combining values: Combining aggregate and non-aggregate values in SQL using Joins and Over clause.
  • MINUS Operator: It is used as “except” which means it will join the two intersecting tables and will minus one table so that only the intersection and the other table are covered.
  • Joining 3 or more tables: Although used very rarely but this will make you learn and understand how to join 3 or more tables and then carry out the querying operations.

Day 25 to Day 30:

Miscellaneous: Since we have covered almost all the topics, we shall now move on to some of the miscellaneous topics, concepts, and functions. These are important parts of DBMS and SQL and will surely help you in your college exams and competitive exams like GATE CS. 

Practice SET

With all the learnings, we also need practice, so here we are providing some practice question sets to improve your understanding and skill. We would be having some commonly asked interview questions be it of DBMS or SQL, subjective problems, and multiple-choice question sets.



Last Updated : 02 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads