You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/sql/concepts/joins/joins.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,9 +42,7 @@ An `OUTER JOIN` will combine rows from different tables even if the join conditi
42
42
43
43
## CROSS JOIN
44
44
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`:
0 commit comments