- 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 LEFT JOIN
The LEFT JOIN (or LEFT OUTER JOIN) in SQL is used to combine rows from two or more tables. It returns all the rows from the left table (the first table) and the matching rows from the right table (the second table). If there is no match, the result will contain NULL values for columns from the right table.
Syntax of LEFT JOIN
SELECT columns
FROM table1
LEFT 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
Departments Table
In this case, the employee with employee_id = 3
does not have a department assigned.
To get a list of employees and their respective departments, using LEFT JOIN:
SELECT employees.first_name, employees.last_name, departments.department_name
FROM employees
LEFT JOIN departments
ON employees.employee_id = departments.employee_id;
Output:
In this result:
- The
LEFT JOIN
includes all employees from theemployees
table. - It returns matching department names where the
employee_id
matches in thedepartments
table. - Since Mike Johnson does not have a department, the value for
department_name
isNULL
.
LEFT JOIN with WHERE Clause
You can also filter the results using a WHERE
clause after performing a LEFT JOIN
. For example:
SELECT employees.first_name, employees.last_name, departments.department_name
FROM employees
LEFT JOIN departments ON employees.employee_id = departments.employee_id
WHERE departments.department_name IS NULL;
This query will return all employees who are not assigned to any department:
Output:
LEFT JOIN with Multiple Tables
You can join more than two tables using multiple LEFT JOINs. For example, adding a projects
table:
SELECT employees.first_name, employees.last_name, departments.department_name, projects.project_name
FROM employees
LEFT JOIN departments ON employees.employee_id = departments.employee_id
LEFT 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
- LEFT JOIN returns all rows from the left table and the matching rows from the right table.
- If no match is found, the right table's columns will contain
NULL
. - It is useful when you want to include all records from the left table, even when there is no match in the right table.
- You can combine LEFT JOIN with WHERE or AND clauses to filter the result.
Summary
The LEFT JOIN ensures that all rows from the left table are returned, even if there is no match in the right 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 second table.