- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL RIGHT JOIN
The RIGHT JOIN (or RIGHT OUTER JOIN) in SQL is used to combine rows from two or more tables. It returns all the rows from the right table (the second table) and the matching rows from the left table (the first table). If there is no match, the result will contain NULL values for columns from the left table.
Syntax of RIGHT JOIN
SELECT columns
FROM table1
RIGHT JOIN table2
ON table1.column = table2.column;
table1
: Left table in the join.table2
: Right table in the join.column
: The column that links the two tables.
Example
Consider the following two tables:
Employees Table
Projects Table
In this case, the project with project_id = 103
does not have an assigned employee.
To get a list of projects and the employees assigned to them, using RIGHT JOIN:
SELECT projects.project_name, employees.first_name, employees.last_name
FROM employees
RIGHT JOIN projects
ON employees.employee_id = projects.employee_id;
Output:
In this result:
- The
RIGHT JOIN
includes all projects from theprojects
table. - It returns matching employee names where the
employee_id
matches in theemployees
table. - Since Project C does not have an employee assigned, the
first_name
andlast_name
areNULL
.
RIGHT JOIN with WHERE Clause
You can filter the results using a WHERE
clause after performing a RIGHT JOIN
. For example:
SELECT projects.project_name, employees.first_name, employees.last_name
FROM employees
RIGHT JOIN projects ON employees.employee_id = projects.employee_id
WHERE employees.first_name IS NULL;
This query will return all projects that do not have any employees assigned:
Output:
RIGHT JOIN with Multiple Tables
You can join more than two tables using multiple RIGHT JOINs. For example, adding a departments
table:
SELECT employees.first_name, employees.last_name, departments.department_name, projects.project_name
FROM employees
RIGHT JOIN departments ON employees.employee_id = departments.employee_id
RIGHT JOIN projects ON employees.employee_id = projects.employee_id;
This query would return a list of employees with their departments and projects (if any).
Key Points
- RIGHT JOIN returns all rows from the right table and the matching rows from the left table.
- If no match is found, the left table's columns will contain
NULL
. - It is useful when you want to include all records from the right table, even when there is no match in the left table.
- You can combine RIGHT JOIN with WHERE or AND clauses to filter the result.
Summary
The RIGHT JOIN ensures that all rows from the right table are returned, even if there is no match in the left table. It is helpful when you want to retrieve data from one table while including rows from another table, even when no corresponding data exists in the first table.