From 75d3cd0f7b01407bcf2a4a64d6a45a65ed3cef75 Mon Sep 17 00:00:00 2001 From: Zeina Obeid Date: Sat, 10 Jan 2026 00:17:03 +0400 Subject: [PATCH] fix(curriculum): incorrect number of join operations listed (#65038) Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../687ea8eba2a8b119f2ad9f8c.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/lecture-working-with-relational-databases/687ea8eba2a8b119f2ad9f8c.md b/curriculum/challenges/english/blocks/lecture-working-with-relational-databases/687ea8eba2a8b119f2ad9f8c.md index df98d6e3df1..1bdeb0096e6 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-relational-databases/687ea8eba2a8b119f2ad9f8c.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-relational-databases/687ea8eba2a8b119f2ad9f8c.md @@ -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`.