Skip to content

Commit

Permalink
Minor tweak about which JOIN qualifier is optional
Browse files Browse the repository at this point in the history
  • Loading branch information
hlapp committed Nov 7, 2023
1 parent 05111b7 commit 5faeaa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lesson-04.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ FROM Lesson AS l INNER JOIN Course AS c USING (Course_OID)

## Notes and other join constructs

* `INNER` and `OUTER` are optional, but they can help understanding a query
* `INNER` is optional (and the default), but it can help understanding a query
* Additional, but rarely used join constructs include:
- `FULL OUTER JOIN`: combines left and right outer join
- `NATURAL JOIN`: joins by columns that have the same name, and reports only one of them
Expand Down
2 changes: 1 addition & 1 deletion pub/Lesson-04.html
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@ <h2>Join order</h2>
<section id="notes-and-other-join-constructs" class="slide level2">
<h2>Notes and other join constructs</h2>
<ul>
<li><code>INNER</code> and <code>OUTER</code> are optional, but they can help understanding a query</li>
<li><code>INNER</code> is optional (and the default), but it can help understanding a query</li>
<li>Additional, but rarely used join constructs include:
<ul>
<li><code>FULL OUTER JOIN</code>: combines left and right outer join</li>
Expand Down

0 comments on commit 5faeaa0

Please sign in to comment.