• Post category:StudyBullet-12
  • Reading time:19 mins read


Learn concepts & compare syntax of 4 popular SQL dialects- PostgreSQL, MySQL, Microsoft SQL & Oracle SQL | SQL Bundle

What you will learn

How to write SELECT queries to fetch relevant data in 4 SQL dialects – PostgreSQl, MySQL, Oracle SQL and Microsoft SQL

How to filter and sort the data using WHEN, logical operators and ORDER BY

How to group and aggregate data in PostgreSQl, MySQL, Oracle SQL and Microsoft SQL

How to apply joins and combining queries in 4 SQL dialects – PostgreSQl, MySQL, Oracle SQL and Microsoft SQL

String, mathematical, date-time functions and pattern matching in 4 SQL dialects – PostgreSQl, MySQL, Oracle SQL and Microsoft SQL

Understanding of VIEWS and INDEXES in 4 SQL dialects – PostgreSQl, MySQL, Oracle SQL and Microsoft SQL

How to write subqueries in SQL

Description

4 Reasons why you should choose this SQL bundle

  1. Carefully designed curriculum teaching you everything in SQL that you will need for Data analysis in businesses
  2. Comprehensive – covers basic and advanced SQL statements in top 4 SQL dialects, MySQL, PostgreSQL, MS SQL and Oracle SQL
  3. Downloadable resources covering essential topics on SQL
  4. 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 week. SQL is the most sought-after skill for Data analysis roles in all the companies. MySQL, PostgreSQL, MSΒ SQL and Oracle SQL 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, Pukhraj and Nadeem. 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, Oracle SQL, database management, and various data analysis tools available in the market.

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.

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


Get Instant Notification of New Courses on our Telegram channel.


Why learn SQL?

  1. SQL is the most universal and commonly used database language. It powers the most commonly used database engines like MySQL, PostgreSQL, Oracle SQL, and Microsoft SQL. Simply put, If you want to access databases then yes, you need to know SQL.
  2. 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.
  3. SQL is one of the most sought-after skills by hiring employers.
  4. 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’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 has minor variations in the “dialect” of SQL that they use, but it’s all still SQL.

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.

Companies that use MySQL: Uber, Airbnb, Netflix, Udemy, Pinterest etc.

Companies that use Oracle SQL: Gartner, Nike, Costco, eBay etc.

Companies that use MS SQL: Accenture, Cognizant, Dell, Microsoft, ViaVarejo etc.

English
language

Content

Introduction

Introduction

Course Resources

Course resources
This is a milestone!

Setting up PostgreSQL and PGAdmin

Installing PostgreSQL and PGAdmin in your PC
If pgAdmin is not opening…

Installing MySQL

Installing and Setting up MySQL

Installing MS SQL

Installing and Setting up MS SQL

Installing Oracle SQL

Installing and Setting up Oracle SQL

Fundamental SQL statements

CREATE in PostgreSQL
CREATE in MySQL
CREATE in MS SQL
CREATE in OracleSQL
INSERT in PostgreSQL
INSERT in MySQL
INSERT in MS SQL
INSERT in Oracle SQL
Import data from File in PostgreSQL
Import data from File in MySQL
Import data from File in MS SQL
Import data from File in Oracle SQL
SELECT statement in PostgreSQL
SELECT statement in MySQL
SELECT statement in MS SQL
SELECT statement in Oracle SQL
SELECT DISTINCT in PostgreSQL
SELECT DISTINCT in MySQL
SELECT DISTINCT in MS SQL
SELECT DISTINCT in Oracle SQL
WHERE in PostgreSQL
WHERE in MySQL
WHERE in MS SQL
WHERE in Oracle SQL
Logical Operators in PostgreSQL
Logical Operators in MySQL
Logical Operators in MS SQL
Logical Operators in Oracle SQL
UPDATE in PostgreSQL
UPDATE in MySQL
UPDATE in MS SQL
UPDATE in Oracle SQL
DELETE in PostgreSQL
DELETE in MySQL
DELETE in MS SQL
DELETE in Oracle SQL
ALTER Part 1 in PostgreSQL
ALTER Part 2 in PostgreSQL
ALTER in MySQL
ALTER in MS SQL
ALTER in Oracle SQL

Restore and Back-up in PostgreSQL

Restore and Back-up
Debugging restoration issues
Creating DB using CSV files
Debugging summary and Code for CSV files

Restore and Back-up in MySQL

Restoring and Back-up in MySQL
Restore and Back-up in MySQL

Restore and Back-up in MS SQL

Restoring and Back-up in MS SQL
Restoring and Back-up in MS SQL

Creating Db using CSV files in Oracle SQL

Creating Db using CSV files in Oracle SQL

Selection commands: Filteing

IN in PostgreSQL
IN in MySQL
IN in MS SQL
BETWEEN in PostgreSQL
BETWEEN in MySQL
BETWEEN in MS SQL
IN & BETWEEN in Oracle SQL
LIKE in PostgreSQL
LIKE in MySQL
LIKE in MS SQL
LIKE in Oracle SQL

Selection commands: Ordering

Side Lecture: Commenting in SQL
ORDER BY in PostgreSQL
ORDER BY in MySQL
ORDER BY in MS SQL
LIMIT in PostgreSQL
LIMIT in MySQL
LIMIT in MS SQL
ORDER BY & LIMIT in Oracle SQL

Aliases

AS in PostgreSQL
AS in MySQL
AS in MS SQL
AS in Oracle SQL

Aggregate Commands

COUNT in PostgreSQL
COUNT in MySQL
SUM in PostgreSQL
SUM in MySQL
AVERAGE in PostgreSQL
AVERAGE in MySQL
MIN & MAX in PostgreSQL
MIN & MAX in MySQL
Aggregate Functions in MS SQL
Aggregate Functions in Oracle SQL

Group By Commands

GROUP BY in PostgreSQL
GROUP BY in MySQL
GROUP BY in MS SQL
HAVING in PostgreSQL
HAVING in MySQL
HAVING in MS SQL
GROUP BY & HAVING in Oracle SQL

Conditional Statement

CASE WHEN in PostgreSQL
CASE WHEN in MySQL
CASE WHEN in MS SQL
CASE WHEN in Oracle SQL

JOINS

Introduction to Joins
Concepts of Joining and Combining Data
Preparing the data
Inner Join in PostgreSQL
Inner Join in MySQL
Inner Join in MS SQL
Inner Join in Oracle SQL
Left Join in PostgreSQL
Left Join in MySQL
Left Join in MS SQL
Right Join in PostgreSQL
Right Join in MySQL
Right Join in MS SQL
Full Outer Join in PostgreSQL
Full Outer Join in MySQL
Full Outer Join in MS SQL
Left, Right & Full Outer Join in Oracle SQL
Cross Join in PostgreSQL
Cross Join in MySQL
Cross Join in MS SQL
Cross Join in Oracle SQL
Intersect and Intersect ALL in PostgreSQL
Intersect in MySQL
Except in PostgreSQL
Except in MySQL
Union in PostgreSQL
Union in MySQL
Intersect, Except & Union in MS SQL
Intersect, Except & Union in Oracle SQL

Subqueries

Subqueries: Subquery in WHERE clause in PostgreSQL
Subqueries: Subquery in FROM clause in PostgreSQL
Subqueries: Subquery in SELECT in PostgreSQL
Subqueries in MySQL
Subqueries in MS SQL
Subqueries in Oracle SQL

Views and Indexes

VIEWS in PostgreSQL
VIEWS in MySQL
VIEWS in MS SQL
VIEWS in Oracle SQL
INDEX in PostgreSQL
INDEX in MySQL
INDEX in MS SQL
INDEX in Oracle SQL

String Functions

LENGTH in PostgreSQL
LENGTH in Oracle SQL
UPPER LOWER in PostgreSQL
UPPER LOWER in Oracle SQL
REPLACE in PostgreSQL
REPLACE in Oracle SQL
TRIM, LTRIM, RTRIM in PostgreSQL
TRIM, LTRIM, RTRIM in Oracle SQL
CONCATENATION in PostgreSQL
CONCATENATION in Oracle SQL
SUBSTRING in PostgreSQL
SUBSTRING in Oracle SQL
LIST AGGREGATION in PostgreSQL
LIST AGGREGATION in Oracle SQL
String Functions Part 1 in MySQL
String Functions Part 2 in MySQL
String Functions in MS SQL

Mathematical Functions

CEIL & FLOOR in PostgreSQL
RANDOM in PostgreSQL
SETSEED in PostgreSQL
ROUND in PostgreSQL
POWER in PostgreSQL
Mathematical Functions in MySQL
Mathematical Functions in MS SQL- Part 1
Mathematical Functions in MS SQL- Part 2
Mathematical Functions in Oracle SQL

Date-Time Functions

CURRENT DATE & TIME in PostgreSQL
AGE in PostgreSQL
EXTRACT in PostgreSQL
Date-Time Functions in MySQL
Date-Time Functions in MS SQL
Date-Time Function in Oracle SQL
Extract in Oracle SQL

Data type conversion

Data Type conversion to string in PostgreSQL
Data Type conversion to Number and Date in PostgreSQL
Data Type conversion in MySQL
Data Type conversion in MS SQL
Data Type conversion in Oracle SQL

PATTERN (STRING) MATCHING

PATTERN MATCHING BASICS
Advanced pattern matching Part 1 (REGULAR EXPRESSIONS)
Advanced pattern matching Part 2 (REGULAR EXPRESSIONS)
Pattern matching in MySQL
Pattern matching in MS SQL
Pattern matching in Oracle SQL

Congratulations

The final milestone!
Bonus Lecture