Skip to content

Commit 6dd0ef5

Browse files
Update joins.md
1 parent 65e0dc9 commit 6dd0ef5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

content/sql/concepts/joins/joins.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ An `OUTER JOIN` will combine rows from different tables even if the join conditi
4242

4343
## CROSS JOIN
4444

45-
A `CROSS JOIN` clause combines each row from one table with each row from another in the result set. This result is also known as a cartesian product.
46-
47-
The following query returns every combination of `shirt_color` and `pants_color`:
45+
A `CROSS JOIN` clause combines each row from one table with each row from another in the result set. This result is also known as a `Cartesian product`. The following query returns every combination of `shirt_color` and `pants_color`:
4846

4947
```sql
5048
SELECT shirts.shirt_color,

0 commit comments

Comments
 (0)