SlideShare a Scribd company logo
SQL Joins With Examples | Edureka
INTRODUCTION TO SQL
WHAT ARE JOINS IN SQL?
TYPES OF JOINS
FAQs ABOUT JOINS
www.edureka.co/mysql-dba
www.edureka.co/mysql-dba
2.5 x 1018 Bytes
www.edureka.co/mysql-dba
SQLisastandardlanguagewhichstandsforStructuredQueryLanguage.SQListhecoreofrelationaldatabaseandis
usedforaccessingandmanagingdatabase.
IntroductiontoSQL
www.edureka.co/mysql-dba
Core of Relational
Databases
Database Administrators
www.edureka.co/mysql-dba
JOINSinSQLarecommandswhichareusedtocombinerowsfromtwoormoretables,basedonarelatedcolumn
betweenthosetables. Theyarepredominantlyusedwhenauseristryingtoextractdatafromtableswhichhaveone-
to-manyormany-to-manyrelationshipsbetweenthem.
WhatareJoinsinSQL?
www.edureka.co/mysql-dba
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
INNER JOIN LEFT JOIN
RIGHT JOIN FULL JOIN
www.edureka.co/mysql-dba
TYPES OF
JOINS
INNER JOIN
Thistypeofjoinreturnsthoserecordswhichhavematchingvaluesinboth
tables.So,ifyouperformanINNERJOINoperationbetweentheEmployeetable
andtheProjectstable,allthetupleswhichhavematchingvaluesinboththe
tableswillbegivenasoutput.
Syntax:
SELECT Table1.Column1,Table1.Column2,Table2.Column1,....
FROM Table1
INNER JOIN Table2
ON Table1.MatchingColumnName = Table2.MatchingColumnName;
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
INNER JOIN LEFT JOIN
RIGHT JOIN FULL JOIN
www.edureka.co/mysql-dba
TYPES OF
JOINS
LEFT JOIN
TheLEFTJOINortheLEFTOUTERJOIN returnsalltherecordsfromthelefttable
andalsothoserecordswhichsatisfyaconditionfromtherighttable.Also,for
therecordshavingnomatchingvaluesintherighttable,theoutputorthe
result-setwillcontaintheNULLvalues.
Syntax:
SELECT Table1.Column1,Table1.Column2,Table2.Column1,....
FROM Table1
LEFT JOIN Table2
ON Table1.MatchingColumnName = Table2.MatchingColumnName;
SELECT Table1.Column1,Table1.Column2,Table2.Column1,.... FROM Table1 LEFT JOIN Table2 ON Table1.MatchingColumnName = Table2.MatchingColumnName;
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
INNER JOIN LEFT JOIN
RIGHT JOIN FULL JOIN
www.edureka.co/mysql-dba
TYPES OF
JOINS
RIGHT JOIN
TheRIGHTJOINortheRIGHTOUTERJOIN returnsalltherecordsfromtheright
tableandalsothoserecordswhichsatisfyaconditionfromthelefttable.Also,
fortherecordshavingnomatchingvaluesinthelefttable,theoutputorthe
result-setwillcontaintheNULLvalues.
Syntax:
SELECT Table1.Column1,Table1.Column2,Table2.Column1,....
FROM Table1
RIGHT JOIN Table2
ON Table1.MatchingColumnName = Table2.MatchingColumnName;
SELECT Table1.Column1,Table1.Column2,Table2.Column1,.... FROM Table1 RIGHT JOIN Table2 ON Table1.MatchingColumnName = Table2.MatchingColumnName;
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
INNER JOIN LEFT JOIN
RIGHT JOIN FULL JOIN
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
FULL JOIN
FullJoinortheFullOuterJoinreturnsallthoserecordswhicheitherhavea
matchintheleft(Table1)ortheright(Table2)table.
Syntax:
SELECT Table1.Column1,Table1.Column2,Table2.Column1,....
FROM Table1
FULL JOIN Table2
ON Table1.MatchingColumnName = Table2.MatchingColumnName;
www.edureka.co/mysql-dba
TYPES OF
JOINS
www.edureka.co
INNER JOIN LEFT JOIN
RIGHT JOIN FULL JOIN
www.edureka.co/mysql-dba
www.edureka.co/mysql-dba
What is a Natural Join and in which situations
is a Natural Join used?
www.edureka.co/mysql-dba
What is a Natural Join and in which situations is a Natural
Join used?
www.edureka.co/mysql-dba
Output when you apply
INNER JOIN
Output when you apply
NATURAL JOIN
How to map many-to-many relationships
using joins?
www.edureka.co/mysql-dba
How to map many-to-many relationships using joins?
www.edureka.co/mysql-dba
Projects Technologies Projects_to_Technologies
2JOIN statements
What is a Hash Join?
www.edureka.co/mysql-dba
What is a Hash Join?
www.edureka.co/mysql-dba
Hash Joins are also a type of joins which are used to join large tables or in an instance,
where the user wants most of the joined table rows.
The Hash Join algorithm is a two-step algorithm.
Build Phase Probe Phase
What is Self & Cross Join?
www.edureka.co/mysql-dba
What is Self & Cross Join?
www.edureka.co/mysql-dba
SELF JOIN in is a join of a table to itself. This implies that each row in a table is joined
with itself.
The CROSS JOIN is a type of join in which a join clause is applied to each row of a table to
every row of the other table. Also, when the WHERE condition is used, this type of JOIN
behaves as an INNER JOIN, and when the WHERE condition is not present, it behaves like a
CARTESIAN product..
Self Join
Cross Join
How to perform JOIN operation on three
tables?
www.edureka.co/mysql-dba
How to perform JOIN operation on three tables?
www.edureka.co/mysql-dba
To perform a JOIN operation on 3 tables, you
need to use 2 JOIN statements.
www.edureka.co/mysql-dba

More Related Content

PPTX
Organizational Skills Presentation
PDF
MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...
PDF
Normalization in SQL | Edureka
PPTX
Getting Started with MySQL I
PPTX
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
PDF
A Study on investor's perception about mutual fund investment
PPT
Sql ppt
PPTX
Basic Concept of Database
Organizational Skills Presentation
MySQL Tutorial For Beginners | Relational Database Management System | MySQL ...
Normalization in SQL | Edureka
Getting Started with MySQL I
Logistic Regression | Logistic Regression In Python | Machine Learning Algori...
A Study on investor's perception about mutual fund investment
Sql ppt
Basic Concept of Database

What's hot (20)

PPTX
SQL JOIN
PPTX
SQL Join Basic
PPT
SQL Queries
PPTX
SQL Basics
PDF
Sql Basics | Edureka
PPT
SQL.ppt
PPTX
SQL Commands
PPTX
Sql joins
PPTX
introdution to SQL and SQL functions
PPTX
Basic SQL and History
PDF
SQL JOINS
PPT
Introduction to structured query language (sql)
PPTX
Sql commands
PPT
Using the set operators
PPTX
Sql subquery
PPTX
SQL(DDL & DML)
PPTX
The Relational Database Model
PPT
Sql join
PPTX
PPTX
Group By, Order By, and Aliases in SQL
SQL JOIN
SQL Join Basic
SQL Queries
SQL Basics
Sql Basics | Edureka
SQL.ppt
SQL Commands
Sql joins
introdution to SQL and SQL functions
Basic SQL and History
SQL JOINS
Introduction to structured query language (sql)
Sql commands
Using the set operators
Sql subquery
SQL(DDL & DML)
The Relational Database Model
Sql join
Group By, Order By, and Aliases in SQL
Ad

Similar to SQL Joins With Examples | Edureka (20)

PPTX
GROUP-4-Database-Connectivity-with-MySqL.pptx
PDF
Top 65 SQL Interview Questions and Answers | Edureka
PPTX
Sql interview question part 12
PPTX
Ebook12
PPTX
Sql interview question part 12
PDF
LinkedList vs ArrayList in Java | Edureka
PPT
Mysql
PPTX
Sql interview question part 3
PPTX
Ebook3
PPT
Ebook7
PPT
Sql interview question part 7
PPT
PDF
Modern Database Management 11th Edition Hoffer Solutions Manual
PDF
Introduction to sql server
PPT
MYSQL.ppt
PPTX
My sql vs sql
PDF
SQL vs NoSQL | MySQL vs MongoDB Tutorial | Edureka
PDF
Sql Interview Questions
PDF
Sql
GROUP-4-Database-Connectivity-with-MySqL.pptx
Top 65 SQL Interview Questions and Answers | Edureka
Sql interview question part 12
Ebook12
Sql interview question part 12
LinkedList vs ArrayList in Java | Edureka
Mysql
Sql interview question part 3
Ebook3
Ebook7
Sql interview question part 7
Modern Database Management 11th Edition Hoffer Solutions Manual
Introduction to sql server
MYSQL.ppt
My sql vs sql
SQL vs NoSQL | MySQL vs MongoDB Tutorial | Edureka
Sql Interview Questions
Sql
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
PDF
Top 5 Trending Business Intelligence Tools | Edureka
PDF
Tableau Tutorial for Data Science | Edureka
PDF
Python Programming Tutorial | Edureka
PDF
Top 5 PMP Certifications | Edureka
PDF
Top Maven Interview Questions in 2020 | Edureka
PDF
Linux Mint Tutorial | Edureka
PDF
How to Deploy Java Web App in AWS| Edureka
PDF
Importance of Digital Marketing | Edureka
PDF
RPA in 2020 | Edureka
PDF
Email Notifications in Jenkins | Edureka
PDF
EA Algorithm in Machine Learning | Edureka
PDF
Cognitive AI Tutorial | Edureka
PDF
AWS Cloud Practitioner Tutorial | Edureka
PDF
Blue Prism Top Interview Questions | Edureka
PDF
Big Data on AWS Tutorial | Edureka
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
PDF
Kubernetes Installation on Ubuntu | Edureka
PDF
Introduction to DevOps | Edureka
What to learn during the 21 days Lockdown | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Tableau Tutorial for Data Science | Edureka
Python Programming Tutorial | Edureka
Top 5 PMP Certifications | Edureka
Top Maven Interview Questions in 2020 | Edureka
Linux Mint Tutorial | Edureka
How to Deploy Java Web App in AWS| Edureka
Importance of Digital Marketing | Edureka
RPA in 2020 | Edureka
Email Notifications in Jenkins | Edureka
EA Algorithm in Machine Learning | Edureka
Cognitive AI Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Blue Prism Top Interview Questions | Edureka
Big Data on AWS Tutorial | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Kubernetes Installation on Ubuntu | Edureka
Introduction to DevOps | Edureka

Recently uploaded (20)

PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
TLE Review Electricity (Electricity).pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Tartificialntelligence_presentation.pptx
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
1. Introduction to Computer Programming.pptx
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Mushroom cultivation and it's methods.pdf
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
Accuracy of neural networks in brain wave diagnosis of schizophrenia
A comparative analysis of optical character recognition models for extracting...
Encapsulation_ Review paper, used for researhc scholars
Programs and apps: productivity, graphics, security and other tools
TLE Review Electricity (Electricity).pptx
Assigned Numbers - 2025 - Bluetooth® Document
Network Security Unit 5.pdf for BCA BBA.
Tartificialntelligence_presentation.pptx
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
OMC Textile Division Presentation 2021.pptx
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
1. Introduction to Computer Programming.pptx
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
NewMind AI Weekly Chronicles - August'25-Week II
Digital-Transformation-Roadmap-for-Companies.pptx
Mushroom cultivation and it's methods.pdf
SOPHOS-XG Firewall Administrator PPT.pptx
Univ-Connecticut-ChatGPT-Presentaion.pdf
Advanced methodologies resolving dimensionality complications for autism neur...

SQL Joins With Examples | Edureka