Full Outer Join in SQL: A Comprehensive Guide

Full Outer Join in SQL: A Comprehensive Guide

19 Oct 2024
Beginner
100 Views
13 min read
Learn with an interactive course and practical hands-on labs

SQL Server Course

Full Outer Join in SQL

Full Outer Join in SQL! What exactly is it..? Just assume you have two different tables and you wish to merge them in a way that shows all of the data from both tables, even though if there is no matching information between them. This is where the Full Outer Join comes in! It returns everything from both tables, even NULL where there is no match. It's similar to merging two lists: you keep everything, even if some things don't line up properly between them. It's quite useful when you want a full view of both tables!

In this SQL Server Tutorial, we will examine the full outer join in SQL in detail, explaining how it works and when to use it, what is full outer join in SQL exactly. We will also see some full outer join in SQL examples to solidify our understanding.

What is a Full Outer Join?

A Full Outer Join in SQL combines the results of an LEFT JOIN with a RIGHT JOIN. Basically, It retrieves all rows from both tables, even if one of them does not contain a matching entry. If there is no match found, the result will have NULL values in columns where data from the other table would typically appear. This join is useful when you want to retrieve all records from two tables, even if some of the data isn't matching.

Read More: Different Types of SQL Joins

What is a Full Outer Join?

Syntax of Full Outer Join

full outer join in SQL syntax is as follows:
SELECT column_name(s)
FROM table1
FULL OUTER JOIN table2
ON table1.column_name = table2.column_name;

How Does Full Outer Join Work?

When a full outer join is executed :

  • It returns all rows from the left table (table1), with NULLs in columns from the right table (table2) when there is no match.
  • It returns all rows from the right table (table2), with NULLs in columns from the left table (table1) when there is no match.
  • It returns only matched rows from both tables where a match is found.

This ensures that even if a record in one of the tables has no corresponding record in the other table, that record is still included in the result, with NULL values for the missing columns.

Example of Full Outer Join

Let’s elaborate on this with real-time examples.

Full outer join in SQL example: Suppose you have two tables: Students and Courses.

Students Table:

StudentIDName
1Pradnya
2Aman
3Shailesh

Courses Table:

CourseIDStudentIDCourseName
1011Math
1022Physics
1034Chemistry

Now, we’ll perform a full outer join on these tables using the StudentID column:

SELECT Students.StudentID, Students.Name, Courses.CourseName
FROM Students
FULL OUTER JOIN Courses
ON Students.StudentID = Courses.StudentID;

Result:

StudentIDNameCourseName
1PradnyaMath
2AmanPhysics
3ShaileshNULL
NULLNULLChemistry

Explanation:

  • The first two rows show the students Pradnya and Aman who are matched with their respective courses.
  • Shailesh has no course listed in the Courses table, so CourseName is NULL.
  • The last row shows a course (Chemistry) with no corresponding student, so StudentID and Name are NULL.

When to Use a Full Outer Join

Full outer joins are particularly useful in the following scenarios:

  • When you need a complete dataset from both tables, regardless of whether there’s a match. This is especially common when analyzing data from multiple sources that might not always have a perfect match.
  • Reporting purposes: When creating comprehensive reports, full outer joins ensure that all possible data points are included, even if some data is missing in one of the tables.
  • Handling missing data: In situations where data is incomplete, full outer joins allow you to view all records and easily spot where values are missing by checking for NULLs.

Full Outer Join vs Other Joins

To understand the uniqueness of a full outer join, let’s compare it to other types of joins:

1. Inner Join:

The inner join returns only the matching records from both tables. If there’s no match, the row is excluded.

SELECT column_name(s)
FROM table1
INNER JOIN table2
ON table1.column_name = table2.column_name;

2. Left Join (Left Outer Join):

Left Outer Join returns all records from the left table and matching records from the right table. Non-matching records from the right table will be NULL.

SELECT column_name(s)
FROM table1
LEFT JOIN table2
ON table1.column_name = table2.column_name;

3. Right Join (Right Outer Join):

Right Outer Join returns all records from the right table and matching records from the left table. Non-matching records from the left table will be NULL.

SELECT column_name(s)
FROM table1
RIGHT JOIN table2
ON table1.column_name = table2.column_name;

4. Full Outer Join:

Combines the results of both left and right joins, ensuring that all records from both tables are returned, with NULL values for any non-matching records.

Implementing FULL OUTER JOIN With WHERE Clause and Alias

Demo Database

Table: students

ColumnData Type
idINT
nameVARCHAR
ageINT

Table: courses

ColumnData Type
course_idINT
student_idINT
courseVARCHAR

Sample Data

students Table


INSERT INTO students (id, name, age) VALUES
(1, 'Pradnya', 20),
(2, 'Shailesh', 17),
(3, 'Aman', 22),
(4, 'Sourav', 19);
    

courses Table


INSERT INTO courses (course_id, student_id, course) VALUES
(101, 1, 'Mathematics'),
(102, 1, 'Physics'),
(103, 3, 'Chemistry'),
(104, 5, 'Biology');  -- Notice student_id 5 does not exist in students table
    

1. FULL OUTER JOIN with WHERE Clause


SELECT 
    s.id AS student_id,
    s.name AS student_name,
    c.course AS course_name
FROM 
    students AS s
FULL OUTER JOIN 
    courses AS c ON s.id = c.student_id
WHERE 
    s.age > 18;  -- Filtering condition
    

2. FULL OUTER JOIN with AS Alias


SELECT 
    s.id AS student_id,
    s.name AS student_name,
    c.course AS course_name
FROM 
    students AS s
FULL OUTER JOIN 
    courses AS c ON s.id = c.student_id;
    

Expected Results

For the FULL OUTER JOIN with WHERE Clause:

student_idstudent_namecourse_name
1PradnyaMathematics
1PradnyaPhysics
3AmanChemistry

For the FULL OUTER JOIN with AS Alias:

student_idstudent_namecourse_name
1PradnyaMathematics
1PradnyaPhysics
3AmanChemistry
2ShaileshNULL
4SouravNULL
NULLNULLBiology

Performance Considerations

Full outer joins are useful, but they can be resource-intensive, especially with large datasets. A full outer join retrieves all data from both tables, including those that do not match, hence the result set might be substantially bigger than those of other join types, resulting in slower performance in some circumstances.

Note: As a best practice, make sure your tables are correctly indexed and only utilize full outer joins when necessary.
Conclusion

In conclusion, We have explored what is full outer join in SQL, and full outer join in SQL examples And got to know that the Full Outer Join in SQL is a useful technique for combining all data from two tables, regardless of whether they have matching rows. It ensures that you get a complete dataset by combining unmatched rows from both tables and replacing missing data with NULL. This makes it particularly useful for creating thorough reports or analyzing data from many sources that may contain gaps. If you want to get an idea of other SQL concepts just go through our SQL Server Course.

FAQs

The biggest difference between an INNER JOIN and an OUTER JOIN is that the inner join will keep only the information from both tables that's related to each other (in the resulting table). An Outer Join, on the other hand, will also keep information that is not related to the other table in the resulting table.

LEFT JOIN returns only unmatched rows from the left table, as well as matched rows in both tables. RIGHT JOIN returns only unmatched rows from the right table , as well as matched rows in both tables. FULL OUTER JOIN returns unmatched rows from both tables,as well as matched rows in both tables.

In the specific case of our example with the Employees and Departments tables, the UNION used in the MySQL workaround for a FULL OUTER JOIN will not result in duplicates.

Take our Sqlserver skill challenge to evaluate yourself!

In less than 5 minutes, with our skill challenge, you can identify your knowledge gaps and strengths in a given skill.

GET FREE CHALLENGE

Share Article

Live Classes Schedule

Our learn-by-building-project method enables you to build practical/coding experience that sticks. 95% of our learners say they have confidence and remember more when they learn by building real world projects.
ASP.NET Core Certification TrainingNov 08MON, TUE, WED, THU, FRI
Filling Fast
07:00AM to 08:30AM (IST)
Get Details
Azure Developer Certification TrainingNov 09SAT, SUN
Filling Fast
08:30PM to 10:30PM (IST)
Get Details
.NET Solution Architect Certification TrainingNov 09SAT, SUN
Filling Fast
05:30PM to 07:30PM (IST)
Get Details
.NET Microservices Certification TrainingNov 09SAT, SUN
Filling Fast
05:30PM to 07:30PM (IST)
Get Details
Microsoft Azure Cloud Architect with AINov 10SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details
ASP.NET Core Certification TrainingNov 17SAT, SUN
Filling Fast
10:00AM to 12:00PM (IST)
Get Details
Advanced Full-Stack .NET Developer Certification TrainingNov 17SAT, SUN
Filling Fast
10:00AM to 12:00PM (IST)
Get Details
Angular Certification TrainingNov 17SAT, SUN
Filling Fast
06:00PM to 08:00PM (IST)
Get Details
Software Architecture and Design TrainingNov 24SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details
.NET Solution Architect Certification TrainingNov 24SAT, SUN
Filling Fast
07:00AM to 09:00AM (IST)
Get Details
Angular Certification TrainingDec 08SAT, SUN
Filling Fast
09:30AM to 11:30AM (IST)
Get Details
Azure Developer Certification TrainingDec 14SAT, SUN
Filling Fast
10:00AM to 12:00PM (IST)
Get Details
.NET Solution Architect Certification TrainingDec 15SAT, SUN
Filling Fast
08:30PM to 10:30PM (IST)
Get Details
.NET Microservices Certification TrainingDec 15SAT, SUN
Filling Fast
08:30PM to 10:30PM (IST)
Get Details

Can't find convenient schedule? Let us know

About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at Scholarhat by DotNetTricks)

Shailendra Chauhan is the Founder and CEO at ScholarHat by DotNetTricks which is a brand when it comes to e-Learning. He provides training and consultation over an array of technologies like Cloud, .NET, Angular, React, Node, Microservices, Containers and Mobile Apps development. He has been awarded Microsoft MVP 9th time in a row (2016-2024). He has changed many lives with his writings and unique training programs. He has a number of most sought-after books to his name which has helped job aspirants in cracking tough interviews with ease.
Accept cookies & close this