Menu

How to do a FULL OUTER JOIN in MySQL?

Let's understand how to do a FULL OUTER JOIN in MySQL

Written by Selva Prabhakaran | 2 min read

Problem

How to do a FULL OUTER JOIN in MySQL?

Let’s create two example tables, employees and departments, and insert some data into them.

Input

sql
    select * from employees;
employee_idemployee_namedepartment_id
1John1
2Jane2
3Bob
4Alice1
sql
    select * from departments;
department_iddepartment_name
1HR
2Finance
3Marketing

Try Hands-On: Fiddle

Create Input Table: Gist

Desired Output

employee_idemployee_nameemp_department_iddepartment_iddepartment_name
1John11HR
2Jane22Finance
3Bob
4Alice4
3Marketing

Solution:

Using UNION ALL()

To perform a FULL OUTER JOIN in MySQL, you can use a combination of LEFT JOIN and UNION with a RIGHT JOIN. Here’s the SQL query to achieve this:

sql
SELECT
    e.employee_id,
    e.employee_name,
    e.department_id AS emp_department_id,
    d.department_id,
    d.department_name
FROM employees e
LEFT JOIN departments d ON e.department_id = d.department_id

UNION

SELECT
    e.employee_id,
    e.employee_name,
    e.department_id AS emp_department_id,
    d.department_id,
    d.department_name
FROM departments d
LEFT JOIN employees e ON d.department_idartment_id IS NULL;


Explanation:

This query first performs a LEFT JOIN between employees and departments, and then a RIGHT JOIN between departments and employees.

The UNION combines the results of these two joins.

Finally, the WHERE clause is used to exclude rows that have matches in both tables, effectively creating a FULL OUTER JOIN.

  1. SQL for Data Science – Level 1
  2. SQL for Data Science – Level 2
  3. SQL for Data Science – Level 3
  1. Introduction to SQL
  2. SQL Window Functions – Made Simple and Easy
  3. SQL Subquery

More SQL Questions

  1. How to concatenate text from multiple rows into a single text string in MySQL?
  2. How to get the rows which have the max value for a column for each group in another column in SQL?
  3. How to select first row in each GROUP BY group?
Free Course
Master Core Python — Your First Step into AI/ML

Build a strong Python foundation with hands-on exercises designed for aspiring Data Scientists and AI/ML Engineers.

Start Free Course
Trusted by 50,000+ learners
Related Course
Master SQL — Hands-On
Join 5,000+ students at edu.machinelearningplus.com
Explore Course
Machine Learning Plus
MachineLearningPlus Expert AI/ML Training

Get a Free 30-Min
Guidance Call

Let our ML expert call you back and guide you for free

You're all set!
Tired of tutorials that go nowhere? This video shows you why and what to do instead.
Watch the Free Training
Redirecting in 5 seconds...
No thanks, I'll figure it out myself

Get your Start in AI/ML with the Foundations for Data Science (AI/ML) Course

Enroll for Free
Scroll to Top
Scroll to Top
Course Preview

Machine Learning A-Z™: Hands-On Python & R In Data Science

Free Sample Videos:

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science

Machine Learning A-Z™: Hands-On Python & R In Data Science