SQL Masterclass: SQL for Data Analytics

SQL course covering basic to advanced SQL topics for SQL Database (PostgreSQL). Beginner friendly SQL training

4.55 (12204 reviews)
Udemy
platform
English
language
Data & Analytics
category
SQL Masterclass: SQL for Data Analytics
415,410
students
9.5 hours
content
Nov 2023
last update
$119.99
regular price

What you will learn

Knowledge of all the essential SQL commands

Become proficient in SQL tools like GROUP BY, JOINS and Subqueries

Become competent in using sorting and filtering commands in SQL

Master SQL's most popular string, mathematical and date-time functions

Enhance the performance of your Database by using Views and Indexes

Increase your efficiency by learning the best practices while writing SQL queries

Relevant theoretical concepts also covered so that you excel in BI Job interviews and Vivas

Solid understanding of SQL

Description

[May 2023 update]

  • Added a new section on Window functions such as RANK, NTILE, SUM TOTAL etc.

  • Added a new video on COALESCE function

  • Added new performance tuning tips at the end of the course

  • Added more videos on interview-related theoretical topics at the end of the course

6 Reasons why you should choose this SQL course

  1. Carefully designed curriculum teaching you everything in SQL that you will need for Data analysis in businesses

  2. Comprehensive - covers basics, advanced SQL statements, PostgreSQL, mySQL, interview tips and performance tuning tips as well

  3. Business related examples and case studies based on SQL techniques, PostgreSQL, mySQL, data analysis techniques

  4. Ample practice exercises because, like any other data analysis tools, SQL requires practice

  5. Downloadable resources covering important topics on SQL

  6. Your queries on SQL and anything covered in the Masterclass will be responded by the Instructor himself

A Verifiable Certificate of Completion is presented to all students who undertake this SQL course.

Why should you choose this course?

This is a complete tutorial on SQL which can be completed within a weekend. SQL is the most sought after skill for Data analysis roles in all the companies. PostgreSQL, mySQL are highly desired skills for database management and data analysis roles. So whether you want to start a career as a data scientist or just grow you data analysis skills, this course will cover everything you need to know to do that.

What makes us qualified to teach you?

The course is taught by Abhishek and Pukhraj. Instructors of the course have been teaching Data Science and Machine Learning for over a decade. They have an in-depth knowledge in advanced SQL, PostgreSQL, mySQL, database management, and various data analysis tools available in the market.

We are also the creators of some of the most popular online courses - with over 150,000 enrollments and thousands of 5-star reviews like these ones:

I had an awesome moment taking this course. It broaden my knowledge more on the power use of SQL as an analytical tools. Kudos to the instructor! - Sikiru

Very insightful, learning very nifty tricks and enough detail to make it stick in your mind. - Armand

Our Promise

Teaching our students is our job and we are committed to it. If you have any questions about the course content, practice sheet or anything related to any topic, you can always post a question in the course or send us a direct message.

Download Practice files, take Quizzes, and complete Assignments

With each lecture, there is a practice sheet attached for you to follow along. You can also take quizzes to check your understanding of concepts. Each section contains a practice assignment for you to practically implement your learning. Solution to Assignment is also shared so that you can review your performance.

By the end of this course, your confidence in using SQL will soar. You'll have a thorough understanding of how to use SQL for Data analytics as a career opportunity.

Go ahead and click the enroll button, and I'll see you in lesson 1!

Cheers

Start-Tech Academy


FAQ's

Why learn SQL?

  1. SQL is the most universal and commonly used database language. It powers the most commonly used database engines like PostgreSQL, SQL Server, SQLite, and MySQL. Simply put, If you want to access databases then yes, you need to know SQL.


  1. It is not really difficult to learn SQL. SQL is not a programming language, it’s a query language. The primary objective where SQL was created was to give the possibility to common people to get interesting data from the database. It is also an English-like language so anyone who can use English at a basic level can write SQL queries easily.


  1. SQL is one of the most sought-after skills by hiring employers.


  1. You can earn good money

How much time does it take to learn SQL?

SQL is easy but no one can determine the learning time it takes. It totally depends on you. The method we adopted to help you learn SQL quickly starts from the basics and takes you to advanced level within hours. You can follow the same, but remember you can learn nothing without practicing it. Practice is the only way to learn SQL quickly.

What are the steps I should follow to learn SQL?

  1. Start learning from the basics of SQL. The first 10 sections of the course cover the basics.

  2. Once done with the basic try your hands on advanced SQL. Next 10 sections cover Advanced topics

  3. Next few sections will cover help you with interviews and Vivas.

  4. Practice your learning on the exercise provided in every section.

What's the difference between SQL and PostgreSQL?

SQL is a language. Specifically, the "Structured Query Language"

PostgreSQL is one of several database systems, or RDMS (Relational Database Management System). PostgresSQL is one of several RDMS's, others of which are Oracle, Informix, MySQL, and MSQL.

All of these RDMSs use SQL as their language. Each of them have minor variations in the "dialect" of SQL that they use, but it's all still SQL.

Which is better, PostgreSQL or MySQL?

Both are excellent products with unique strengths, and the choice is often a matter of personal preference.

PostgreSQL offers overall features for traditional database applications, while MySQL focuses on faster performance for Web-based applications.

Open source development will bring more features to subsequent releases of both databases.

Who uses these databases?

Here are a few examples of companies that use PostgreSQL: Apple, BioPharm, Etsy, IMDB, Macworld, Debian, Fujitsu, Red Hat, Sun Microsystem, Cisco, Skype.

What's special about this course?

The course is created on the basis of three pillars of learning:

  1. Know (Study)

  2. Do (Practice)

  3. Review (Self feedback)

Know

We have created a set of concise and comprehensive videos to teach you all the SQL related skills you will need in your professional career.

Do

We also provide Exercises to complement the learning from the lecture video. These exercises are carefully designed to further clarify the concepts and help you with implementing the concepts on practical problems faced on-the-job.

Review

Check if you have learnt the concepts by executing your code and analyzing the result set. Ask questions in the discussion board if you face any difficulty.

Bonus Lectures

Apart from this, their is a bonus section which covers important topics from the view of job interviews and Vivas.

The Authors of this course have several years of corporate experience and hence have curated the course material keeping in mind the requirement of SQL in today's corporate world.

Content

Introduction

Course Overview

Installation and getting started

Installation

Case Study : Demo

Course Resources
Case Study Part 1
Case Study Part 2

Fundamental SQL statements

CREATE
Exercise 1: Create DB and Table
Solutions to all Exercises
INSERT
Import data from File
Exercise 2: Inserting and Importing
SELECT statement
SELECT DISTINCT
WHERE
Logical Operators
Exercise 3: SELECT & WHERE
UPDATE
DELETE
ALTER
Exercise 4: Updating Table
Fundamental SQL statements

Restore and Back-up

Restore and Back-up
CSV files
Exercise 5: Restore and Back-up

Selection commands: Filtering

IN
BETWEEN
LIKE
Exercise 6: In, Like & Between

Selection commands: Ordering

Side Lecture: Commenting in SQL
ORDER BY
LIMIT
Exercise 7: Sorting

Alias

AS

Aggregate Commands

COUNT
SUM
AVERAGE
MIN & MAX
Exercise 8: Aggregate functions
Quiz

Group By Commands

GROUP BY
HAVING
Exercise 9: Group By
Quiz 2

Conditional Statement

CASE WHEN

JOINS

Introduction to Joins
Inner Join
Left Join
Right Join
Full Outer Join
Cross Join
Except
Union
Exercise 10: Joins
Joins

Subqueries

Subqueries
Exercise 11: Subqueries

Views and Indexes

VIEWS
INDEX
Exercise 12: Views

String Functions

LENGTH
UPPER LOWER
REPLACE
TRIM, LTRIM, RTRIM
CONCATENATION
SUBSTRING
LIST AGGREGATION
Exercise 13: String Functions

Mathematical Functions

CEIL & FLOOR
RANDOM
SETSEED
ROUND
POWER
Exercise 14: Mathematical Functions

Date-Time Functions

CURRENT DATE & TIME
AGE
EXTRACT
Exercise 15: Date-time functions

PATTERN (STRING) MATCHING

PATTERN MATCHING BASICS
ADVANCE PATTERN MATCHING (REGULAR EXPRESSIONS)
Exercise 16: Pattern Matching

Data Type conversion functions

Converting Numbers/ Date to String
Converting String to Numbers/ Date

User Access Control Functions

User Access Control

Bonus Section: Nail that Interview!

Tablespace
PRIMARY KEY & FOREIGN KEY
ACID compliance
Truncate
Practice Test 1

Performance tuning tips

TIP 1 (EXPLAIN)
TIP 2
TIP 3
TIP 4 (VACCUM)
TIP 5
TIP 6 (STRING FUNCTIONS)
TIP 7 (JOINS)
TIP 8 (SCHEMAS)

Practice Problems

Bonus Section : Database Basics

What is SQL
Tables and DBMS
Types of SQL commands
PostgreSQL
Bonus Lecture: Join our Job portal
Bonus Lecture

Screenshots

SQL Masterclass: SQL for Data Analytics - Screenshot_01SQL Masterclass: SQL for Data Analytics - Screenshot_02SQL Masterclass: SQL for Data Analytics - Screenshot_03SQL Masterclass: SQL for Data Analytics - Screenshot_04

Reviews

Maude-Ann
November 7, 2023
I only just started, but thus far the experience has been very good. I especially appreciate the resources given with lectures where applicable.
Shabbir
November 1, 2023
Course is very helpful for beginners Step by step you will enjoy learning Best part is coding practice which will help you to practice side by side.
Chinedu
October 31, 2023
the very basics of Data analyisis as concerning SQL are threated in this course, gives on a proper foundation on SQL.
Oluwatobiloba
October 16, 2023
This course really helped me because i've always had issues with query languages and it gave good knowledge to progress as an analyst
Ankit
September 16, 2023
I like the exercises write after the theory , well its not a masterclass , but who cares , its covering all the topics efficiently.
Yogalakshmi
September 14, 2023
The course was really excellent and very clear. It helped to built my strong foundation in Postgresql. Thank you to both the instructors.
Sharanabasappa
August 30, 2023
need more examples and solution for the classes, each video has only one question and a solution, providing multiple scenarios for the same topic can give me more deep understanding
D
July 30, 2023
I found the course to be pretty good and insightful. I just love the way the instructors explain the basic SQL commands. I also like how they have structured the course, dividing the content into proper sections. Makes it easy to learn.
Bhunesh
July 10, 2023
course is good but it feels very boring as the instructor seems like a old university professor who is just speaking and doesn't care for the students if they are getting it or not. P.S- doesn't have any intent to connect with the students
Anthony
July 4, 2023
the example made the picture clear about what SQL is all about so now am going in with a purposed mind
Luqman
July 3, 2023
The contents were complete! One of the most comprehensive SQL course that I've gone through and was useful for a beginner. Only downsides would be the structure and order of the topics (Section 25: Database basics should be one of the early topics). The graphics could be updated.
Jahnavi
June 21, 2023
Start Tech Academy's SQL course is excellent. I learned various SQL topics effectively and found the course highly beneficial.
Yaron
March 16, 2023
so far the course is great and very clear, teacher explains in a very good pace and I am super happy to have this course to expand my SQL knowledge. Highly recommend this course and lecturer.
Bivashis
March 11, 2023
Best course for learning SQL. Almost all the topic has been covered for a beginner to intermediate level of SQL.
Arup
March 4, 2023
Thank you so much for this helpful and beautiful course! Very nice that I could be part of this course.

Coupons

DateDiscountStatus
3/13/202095% OFF
expired
4/21/2020100% OFF
expired
4/28/2020100% OFF
expired
5/9/2020100% OFF
expired
5/30/2020100% OFF
expired
6/5/2020100% OFF
expired
6/13/2020100% OFF
expired
6/26/202095% OFF
expired
7/19/2020100% OFF
expired
8/7/2020100% OFF
expired
8/15/2020100% OFF
expired
8/29/2020100% OFF
expired
9/19/2020100% OFF
expired
9/29/2020100% OFF
expired
10/9/2020100% OFF
expired
10/19/2020100% OFF
expired
10/30/2020100% OFF
expired
11/16/2020100% OFF
expired
11/28/2020100% OFF
expired
12/7/2020100% OFF
expired
12/13/2020100% OFF
expired
1/10/2021100% OFF
expired
1/18/2021100% OFF
expired
2/5/2021100% OFF
expired
2/22/2021100% OFF
expired
2/25/2021100% OFF
expired
3/6/2021100% OFF
expired
3/20/2021100% OFF
expired
3/30/2021100% OFF
expired
4/8/2021100% OFF
expired
4/14/2021100% OFF
expired
4/27/2021100% OFF
expired
5/10/2021100% OFF
expired
5/27/2021100% OFF
expired
6/19/2021100% OFF
expired
6/30/2021100% OFF
expired
7/21/2021100% OFF
expired
7/28/2021100% OFF
expired
8/1/2021100% OFF
expired
8/11/2021100% OFF
expired
8/30/2021100% OFF
expired
9/18/2021100% OFF
expired
9/24/2021100% OFF
expired
10/7/2021100% OFF
expired
10/21/2021100% OFF
expired
1/8/2022100% OFF
expired
1/16/2022100% OFF
expired
1/27/2022100% OFF
expired
2/8/2022100% OFF
expired
2/19/2022100% OFF
expired
3/9/2022100% OFF
expired
3/28/2022100% OFF
expired
4/7/2022100% OFF
expired
4/19/2022100% OFF
expired
4/23/2022100% OFF
expired
5/12/2022100% OFF
expired
5/23/2022100% OFF
expired
5/26/2022100% OFF
expired
6/15/2022100% OFF
expired
6/22/2022100% OFF
expired
7/15/2022100% OFF
expired
7/30/2022100% OFF
expired
8/4/2022100% OFF
expired
8/14/2022100% OFF
expired
9/11/2022100% OFF
expired
9/21/2022100% OFF
expired
9/28/202263% OFF
expired
10/5/2022100% OFF
expired
10/20/2022100% OFF
expired
11/24/2022100% OFF
expired
1/19/2023100% OFF
expired
2/20/2023100% OFF
expired
2/24/2023100% OFF
expired
2/28/2023100% OFF
expired

Charts

Price

SQL Masterclass: SQL for Data Analytics - Price chart

Rating

SQL Masterclass: SQL for Data Analytics - Ratings chart

Enrollment distribution

SQL Masterclass: SQL for Data Analytics - Distribution chart
2120874
udemy ID
1/2/2019
course created date
4/27/2019
course indexed date
Bot
course submited by