fix(curriculum): incorrect number of join operations listed (#65038)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Zeina Obeid
2026-01-10 00:17:03 +04:00
committed by GitHub
parent 0a5551d302
commit 75d3cd0f7b

View File

@@ -9,14 +9,14 @@ dashedName: what-are-the-different-ways-to-join-tables
Even though relational databases organize data into separate tables, SQL's `JOIN` operations allow you to combine related information from tables to query data.
There are five main types of `JOIN` operations:
There are several variants of the `JOIN` operation, including:
- `INNER JOIN`
- `FULL OUTER JOIN`
- `LEFT OUTER JOIN`
- `RIGHT OUTER JOIN`
- `SELF JOIN`
- And `CROSS JOIN`
- `CROSS JOIN`
Let's start with `INNER JOIN`.