Structured query language (SQL) is a language that is used in relational databases to store, retrieve, and manipulate data.
SQL provides a join functionality that allows us to combine data from multiple tables based on common columns between the tables.
Below we can see the six different types of joins provided by SQL:
Inner Join
Left Join
Right Join
Full Outer Join
Cross Join
Self Join
Below is a brief explanation of all these different types of SQL joins.
The inner join query is used when we want to retrieve only those rows from both tables that have matching values in specified columns.
The left join query returns all rows from the left table and the matching rows from the right table. If a match for the left table does not exist in the right table, it will result in NULL values for the columns on the right side.
Similar to the left join, in the right join, we will get matching rows from the left table and all rows from the right table.
The full outer join will return all rows from both tables; if there is no match found, the result will contain NULL values in those table columns that do not have a matching value.
The cross join combines each row of the first table from each row of the second, similar to the cartesian product of the rows in the two tables.
A self join is a specific type of join that is used when a table is joined with itself. It combines rows from the same table based on a related column.
Now we will look at the SQL script attached below that shows how these joins work on two tables, Employees
and Managers
. For the self join, we use a separate table named Manager
.
We can see the contents of the Employees
and Managers
table above. Using the tables, we see that Sarah manages John and Michael manages Alice.
In the table above, we also see a Manager
table that will be used to perform a self join query. This table shows that Pudge manages Sven and Crystal, but no one manages Pudge.
-- Create the Employees table if it doesn't existCREATE TABLE IF NOT EXISTS Employees (EmployeeID INT PRIMARY KEY,EmployeeName VARCHAR(50));-- Insert data into the Employees tableINSERT INTO Employees (EmployeeID, EmployeeName) VALUES(1, 'John'),(2, 'Alice'),(3, 'Bob'),(4, 'Mary'),(5, 'Jake');-- Create the Managers tableCREATE TABLE Managers (EmployeeID INT PRIMARY KEY,ManagerName VARCHAR(50));-- Insert data into the Managers tableINSERT INTO Managers (EmployeeID, ManagerName) VALUES(1, 'Sarah'),(2, 'Michael'),(100, 'Jeff');-- Display Employees TableSELECT "Employees Table -> ", Employees.EmployeeID AS EID, "", Employees.EmployeeName AS EName, ""FROM Employees;SELECT "";-- Display Managers TableSELECT "Managers Table -> ", Managers.EmployeeID AS EID, "", Managers.ManagerName AS MName, ""FROM Managers;SELECT "";-- Perform Inner JoinSELECT "Inner Join -> ", Employees.EmployeeID AS EID, "", Employees.EmployeeName AS EName, "", Managers.ManagerName AS MNameFROM EmployeesINNER JOIN ManagersON Employees.EmployeeID = Managers.EmployeeID;SELECT "";-- Perform Left JoinSELECT "Left Join -> ", Employees.EmployeeID AS EID, "",Employees.EmployeeName AS EName, "",Managers.ManagerName AS MNameFROM EmployeesLEFT JOIN ManagersON Employees.EmployeeID = Managers.EmployeeID;SELECT "";-- Perform Right JoinSELECT "Right Join -> ", Employees.EmployeeID AS EID, Employees.EmployeeName AS EName, Managers.ManagerName AS MNameFROM EmployeesRIGHT JOIN ManagersON Employees.EmployeeID = Managers.EmployeeID;SELECT "";-- Perform Full JoinSELECT "Full Outer Join -> ", Employees.EmployeeID AS EID, Employees.EmployeeName AS EName, Managers.ManagerName AS MNameFROM EmployeesLEFT JOIN Managers ON Employees.EmployeeID = Managers.EmployeeIDUNIONSELECT "Full Outer Join -> ", Employees.EmployeeID AS EID, Employees.EmployeeName AS EName, Managers.ManagerName AS MNameFROM EmployeesRIGHT JOIN Managers ON Employees.EmployeeID = Managers.EmployeeID;SELECT "";-- Perform Cross JoinSELECT "Cross Join -> ", Employees.EmployeeID AS EID, Employees.EmployeeName AS EName, Managers.EmployeeID AS MID, Managers.ManagerName AS MNameFROM EmployeesCROSS JOIN Managers;SELECT "";-- Create the Manager tableCREATE TABLE Manager (EmployeeID INT PRIMARY KEY,EmployeeName VARCHAR(50),ManagerID INT);-- Insert data into the Manager tableINSERT INTO Manager (EmployeeID, EmployeeName, ManagerID) VALUES(10, 'Pudge', NULL),(20, 'Sven', 10),(30, 'Crystal', 10);-- Display Manager TableSELECT "Manager Table -> ", Manager.EmployeeID AS EID, "", Manager.EmployeeName AS EName, "", Manager.ManagerID AS MID, ""FROM Manager;SELECT "";-- Perform Self JoinSELECT "Self Join -> ",s1.EmployeeName AS EName, s2.EmployeeName AS MNameFROM Manager s1, Manager s2WHERE s1.ManagerID = s2.EmployeeID;SELECT "";
Lines 2–13: We create an employees
table and insert five rows into it.
Lines 16–25: We create a managers
table and insert three rows into it.
Lines 28–35: Display both the managers
and employees
tables.
Lines 38–42: Perform an inner join on the tables based on EmployeeID
.
Lines 45–49: Perform a left join on the column EmployeeID
where the left table is Employees
, and the right table is Managers
.
Lines 52–56: Similar to the left join, perform a right join on the column EmployeeID
keeping the table orientation the same.
Lines 59–66: Perform a full outer join on both tables. Since MySQL does not support the clause, we use a UNION
clause to get the same results.
Lines 69–72: We perform a cross-join on both tables where the Employees
table performs a cartesian product with the Managers
table.
Lines 75–85: We create a Manager
table for which we will perform self-join and insert three rows into the table.
Lines 93–96: A self join is performed on the Manager
table using the ManagerID
and EmployeeID
columns.
Unlock your potential: SQL joins series, all in one place!
To continue your exploration of SQL joins, check out our series of Answers below:
Different types of SQL joins
Understand the different types of SQL joins used for combining data from multiple tables.
What is inner join in SQL?
Learn how inner joins return matched rows from both tables in SQL.
What is outer join in SQL?
Explore outer joins and how they return unmatched rows as well.
What is a self join in SQL?
Discover how self joins allow a table to join with itself.
What is a natural join in SQL?
Learn how natural joins match columns with the same name in SQL tables.
What is a hash join in SQL?
Understand hash joins, which are used for large-scale data matching and combining.
What is the SQL CROSS JOIN?
Explore the SQL CROSS JOIN to combine every row from one table with every row from another.
What is an equi join in SQL?
Learn how equi joins match rows based on the equality of values between tables.
How to join 3 or more tables in SQL
Master the technique of joining multiple tables in a SQL query for complex data retrieval.
Free Resources