Skip to content

Latest commit

 

History

History
494 lines (335 loc) · 11.1 KB

06_SQL_JOINS.md

File metadata and controls

494 lines (335 loc) · 11.1 KB

Mastering SQL Joins: Unlocking the Power of Relationships

Introduction to SQL Joins:

In the realm of databases, information is often spread across multiple tables. SQL joins are the key to bringing this scattered data together, creating meaningful relationships and enabling powerful queries. Let's delve into the world of SQL joins, exploring types, hands-on examples, set operations, and more.

Why Have Data in Multiple Tables?

Before we jump into the intricacies of SQL joins, let's understand why data is often distributed across multiple tables. Database normalization, a crucial concept in relational databases, aims to minimize data redundancy and improve data integrity. By breaking down large tables into smaller, related tables, we ensure efficient storage and maintainability.

Types of Joins:

1. Cross Joins - Cartesian Products:

A cross join, also known as a Cartesian product, combines each row from the first table with every row from the second table. This results in a complete set of all possible combinations.

SQL Syntax:

SELECT *
FROM table1
CROSS JOIN table2;

Example:

Consider two tables, employees and departments:

Employees:

emp_id emp_name
1 Alice
2 Bob

Departments:

dept_id dept_name
101 IT
102 Finance

Output:

emp_id emp_name dept_id dept_name
1 Alice 101 IT
1 Alice 102 Finance
2 Bob 101 IT
2 Bob 102 Finance

2. Inner Joins:

Inner joins return rows where there is a match in both tables based on the specified condition.

SQL Syntax:

SELECT *
FROM table1
INNER JOIN table2 ON table1.column = table2.column;

Example:

Consider two tables, users and orders:

Users:

user_id name
1 Alice
2 Bob

Orders:

order_id user_id product
101 1 Laptop
102 2 Smartphone

Output:

order_id user_id name product
101 1 Alice Laptop
102 2 Bob Smartphone

3. Right Joins:

Right joins return all rows from the right table and the matched rows from the left table. If there's no match, the result will contain NULL values for the left table columns.

SQL Syntax:

SELECT *
FROM table1
RIGHT JOIN table2 ON table1.column = table2.column;

Example:

Consider two tables, employees and salaries:

Employees:

emp_id emp_name
1 Alice
2 Bob

Salaries:

emp_id salary
1 50000
3 60000

Output:

emp_id emp_name salary
1 Alice 50000
NULL NULL 60000

4. Left Joins:

Left joins return all rows from the left table and the matched rows from the right table. If there's no match, the result will contain NULL values for the right table columns.

SQL Syntax:

SELECT *
FROM table1
LEFT JOIN table2 ON table1.column = table2.column;

Example:

Consider two tables, customers and orders:

Customers:

cust_id name
1 Alice
2 Bob

Orders:

order_id cust_id product
101 1 Laptop
102 3 Smartphone

Output:

order_id cust_id name product
101 1 Alice Laptop
102 3 NULL Smartphone

5. Full Outer Join:

A full outer join returns all rows when there is a match in either the left or right table. If there's no match, the result will contain NULL values for the unmatched table's columns.

SQL Syntax:

SELECT *
FROM table1
FULL OUTER JOIN table2 ON table1.column = table2.column;

Example:

Consider two tables, students and grades:

Students:

student_id name
1 Alice
2 Bob

Grades:

student_id grade
1 A
3 B

Output:

student_id name grade
1 Alice A
2 Bob NULL
3 NULL B

SQL Hands-on on Joins:

Now, let's put our knowledge into action with some hands-on examples. We'll explore set operations, self-joins, query execution order, and advanced scenarios involving multiple tables.

Set Operations:

Set operations, such as UNION, INTERSECT, and EXCEPT, allow us to combine results from multiple SELECT statements.

Example:

Consider two tables, team_a and team_b:

Team A:

player_id name
1 Alice
2 Bob

Team B:

player_id name
2 Charlie
3 David

Union:

SELECT *
FROM team_a
UNION
SELECT *
FROM team_b;

Output:

player_id name
1 Alice

|

2 | Bob | | 3 | David | | 4 | Emily |

Self Join:

A self join involves joining a table with itself. This is useful when dealing with hierarchical or recursive data.

Example:

Consider a table, employees_hierarchy:

Employees Hierarchy:

emp_id emp_name manager_id
1 Alice NULL
2 Bob 1
3 Charlie 1

Self Join:

SELECT e1.emp_name AS employee, e2.emp_name AS manager
FROM employees_hierarchy e1
JOIN employees_hierarchy e2 ON e1.manager_id = e2.emp_id;

Output:

employee manager
Bob Alice
Charlie Alice

Query Execution Order:

Understanding the order of query execution is crucial. The logical query processing order is as follows: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

Example:

Consider a query joining orders, customers, and order_details:

SELECT c.name AS customer, o.order_id, od.product
FROM orders o
JOIN customers c ON o.cust_id = c.cust_id
JOIN order_details od ON o.order_id = od.order_id
WHERE c.city = 'New York'
ORDER BY o.order_id;

Output:

customer order_id product
Alice 101 Laptop
Bob 102 Smartphone

Joining on More Than One Column:

In some scenarios, you might need to join tables on multiple columns for accurate matches.

Example:

Consider two tables, employees and departments:

Employees:

emp_id emp_name dept_id
1 Alice 101
2 Bob 102

Departments:

dept_id dept_name
101 IT
102 Finance

Joining on More Than One Column:

SELECT emp_name, dept_name
FROM employees e
JOIN departments d ON e.dept_id = d.dept_id;

Output:

emp_name dept_name
Alice IT
Bob Finance

Joining More Than 2 Tables - Find Order Name and Corresponding Category Name:

Consider three tables, orders, order_details, and categories:

Orders:

order_id cust_id
101 1
102 2

Order Details:

order_id product category_id
101 Laptop 1
102 Smartphone 2

Categories:

category_id category_name
1 Electronics
2 Gadgets

Output:

SELECT o.order_id, od.product, c.category_name
FROM orders o
JOIN order_details od ON o.order_id = od.order_id
JOIN categories c ON od.category_id = c.category_id;

Result:

order_id product category_name
101 Laptop Electronics
102 Smartphone Gadgets

Filtering Columns:

Filtering columns allows you to retrieve specific information, enhancing the precision of your queries.

Example: Find Order_id, Name, and City by Joining Users and Orders.

Consider two tables, users and orders:

Users:

user_id name city
1 Alice New York
2 Bob London

Orders:

order_id user_id product
101 1 Laptop
102 2 Smartphone

Query:

SELECT o.order_id, u.name, u.city
FROM orders o
JOIN users u ON o.user_id = u.user_id;

Output:

order_id name city
101 Alice New York
102 Bob London

Find Order_id, and Product Category by Joining Order_details and Categories.

Consider two tables, order_details and categories:

Order Details:

order_id product category_id
101 Laptop 1
102 Smartphone 2

Categories:

category_id category_name
1 Electronics
2 Gadgets

Query:

SELECT od.order_id, od.product, c.category_name
FROM order_details od
JOIN categories c ON od.category_id = c.category_id;

Output:

order_id product category_name
101 Laptop Electronics
102 Smartphone Gadgets

Filtering Rows:

Filtering rows allows you to narrow down results based on specific conditions.

Example:

Consider two tables, students and grades:

Students:

student_id name
1 Alice
2 Bob

Grades:

student_id grade
1 A
3 B

Query:

SELECT s.student_id, s.name, g.grade
FROM students s
LEFT JOIN grades g ON s.student_id = g.student_id
WHERE g.grade IS NOT NULL;

Output:

student_id name grade
1 Alice A

Conclusion:

SQL joins are a powerful tool for managing relationships between tables in a relational database. Whether you're working with inner joins, outer joins, or self-joins, understanding how to bring together data from multiple sources is a fundamental skill for any SQL practitioner.

As you explore SQL joins in various scenarios, remember to visualize the relationships between tables, utilize set operations, and pay attention to query execution order. With these skills in your toolkit, you'll navigate the world of databases with confidence, crafting queries that extract valuable insights from your data.

Happy querying!