Files
vault/Career/Database - SQL/SQL Joins.md
Zaine 5d3ed14275
Some checks failed
Build Quartz Notes / build (push) Failing after 2m40s
updates
2026-06-04 14:47:44 +01:00

662 B
Executable File

note type, date, done
note type date done
database
theory
2026-06-03

The SQL JOIN Clause

The JOIN clause is used to combine rows from two or more tables, based on a related column between them.

Here are the different types of JOINs in SQL:

  • (INNER) JOIN: Returns only rows that have matching values in both tables
  • LEFT (OUTER) JOIN: Returns all rows from the left table, and only the matched rows from the right table
  • RIGHT (OUTER) JOIN: Returns all rows from the right table, and only the matched rows from the left table
  • FULL (OUTER) JOIN: Returns all rows when there is a match in either the left or right table

!Pasted image 20260603221345.png