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`.