Skip to content

Commit 6525e8f

Browse files
authored
Update working_with_joins.md
1 parent 2fd97d7 commit 6525e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/starter_guides/working_with_joins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ The behavior of the `INNER JOIN` can be extended or changed, by using one of the
9999

100100
## (LEFT / RIGHT / FULL) OUTER JOIN {#left--right--full-outer-join}
101101

102-
The `LEFT OUTER JOIN` behaves like `INNER JOIN`; plus, for non-matching left table rows, ClickHouse returns [default values](/sql-reference/statements/create/table/#default-values) for the right table’s columns.
102+
The `LEFT OUTER JOIN` behaves like `INNER JOIN`; plus, for non-matching left table rows, ClickHouse returns [default values](/sql-reference/statements/create/table#default_values) for the right table’s columns.
103103

104104
A `RIGHT OUTER JOIN` query is similar and also returns values from non-matching rows from the right table together with default values for the columns of the left table.
105105

@@ -231,7 +231,7 @@ LIMIT 10;
231231
└─────────────────────────────────────────────┘
232232
```
233233

234-
The `INNER JOIN` clause in the syntactically optimized `CROSS JOIN` query version contains the `ALL` keyword, that got explicitly added in order to keep the cartesian product semantics of the `CROSS JOIN` even when being rewritten into an `INNER JOIN`, for which the cartesian product can be [disabled](/operations/settings/settings#settings-join_default_strictness).
234+
The `INNER JOIN` clause in the syntactically optimized `CROSS JOIN` query version contains the `ALL` keyword, that got explicitly added in order to keep the cartesian product semantics of the `CROSS JOIN` even when being rewritten into an `INNER JOIN`, for which the cartesian product can be [disabled](/operations/settings/settings#join_default_strictness).
235235

236236
```sql
237237
ALL

0 commit comments

Comments
 (0)