What is a Full Outer Join in SQL?

Learn to Code Today!

Learn 10x faster: coding, no-code and data skills. Join millions of users mastering new tech skills and accelerating their career with Enki.
Get started

What is a Full Outer Join in SQL?

A FULL OUTER JOIN in SQL is a powerful and flexible way to combine rows from two tables, returning all records when there's a match in either table.

To dive deeper into the vast possibilities of SQL joins and gain more insights with practical examples, visit enki.com for tutorials crafted by industry experts like us.

Understanding Full Outer Join

To break it down:

  • The FULL OUTER JOIN returns all records from both tables, filling in gaps with NULL where there is no corresponding data in the other table.
  • This join ensures a complete dataset from the two tables, capturing all possible matches and non-matches.
SELECT columns
FROM table1
FULL OUTER JOIN table2
ON table1.common_column = table2.common_column;

Consider we have two tables: Students and Marks. The Students table contains student details, while the Marks table contains their respective marks. Here's how you can apply a FULL OUTER JOIN:

The result of this query will include every record from both tables—students without marks and marks without corresponding students—filling with NULL where matches are not found.

Full Outer Join Diagram

Comparison with Other Joins

Understanding the distinction between different types of SQL joins is crucial for effective database management and data analysis. Let's delve deeper into the FULL OUTER JOIN by comparing it with INNER JOIN, LEFT JOIN, and RIGHT JOIN.

Inner Join Diagram

Inner Join

An INNER JOIN returns only the rows where there is a match in both tables. It excludes rows that do not have corresponding values in the other table.

With an INNER JOIN, you focus on rows with matching keys in both tables, resulting in a combined dataset excluding any non-matching data.

Left Join

A LEFT JOIN returns all the rows from the left table (Table A), and the matched rows from the right table (Table B). For rows in Table A with no match in Table B, the result is NULL in the columns of Table B.

The LEFT JOIN is useful when you want to keep all the rows from the primary (left) table, providing a complete view of Table A and adding information from Table B where available.

Right Join

A RIGHT JOIN returns all the rows from the right table (Table B), and the matched rows from the left table (Table A). For rows in Table B with no match in Table A, the result is NULL in the columns of Table A.

RIGHT JOIN is essentially the mirror image of LEFT JOIN, focusing on retaining all rows from the secondary (right) table, while incorporating data from the primary (left) table where matches exist.

Summary

  • INNER JOIN: Returns only matching rows from both tables.
  • LEFT JOIN: Returns all rows from the left table and matched rows from the right table, filling NULL for non-matches.
  • RIGHT JOIN: Returns all rows from the right table and matched rows from the left table, filling NULL for non-matches.
  • FULL OUTER JOIN: Combines all rows from both tables, filling NULL in places where there are no corresponding matches.

By mastering these joins, from inner to full outer, you arm yourself with a versatile toolbox for handling complex data scenarios in SQL. Choose the appropriate join type based on your data integration and analysis needs to draw accurate insights and maintain the integrity of your datasets.

Combining Data from Multiple Data Sources

Imagine you are tasked with combining customer data from two different systems—one tracking registered users and the other tracking their purchase histories. Some customers exist in both systems, some only in one. A FULL OUTER JOIN will combine these records, giving you a comprehensive view of both registered customers and their purchase behavior.

Handling Missing Data

Suppose you are dealing with sales records and inventory details. Sales data might have entries for items not listed in the inventory yet, and vice versa. A FULL OUTER JOIN ensures all records are displayed, indicating missing data with NULL values, allowing for effective gap analysis.

For those looking to go beyond and truly master SQL joins and other advanced functionalities, the full spectrum of tutorials and guides on enki.com awaits you.

About Enki

  • Fully personalized online up-skilling
  • Unlimited AI coaching
  • Designed by Silicon Valley experts

More articles

Meet your AI-enabled coach

Professional athletes have a coach for every aspect of their performance. Why can’t you for your work? Enki’s AI-powered coaching on-demand - combined with state of the art, structured learning content - makes this a reality.
1
1:1 AI Coaching
How do I remove duplicate emails?
Convert the list to a set and back to a list. Sets automatically remove duplicates.
2
Personalized Exercises
3
Interactive practice

Unlock full access to all skills on Enki with a 7-day free trial

Get started