Skip to content

Commit 76d72ab

Browse files
authored
Merge pull request #147 from jniesch/gh-pages
Lesson Contribution - Join types; JN
2 parents 4b18b1d + 37fe7b8 commit 76d72ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_episodes/06-joins-aliases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ON articles.ISSNs = journals.ISSNs;
3030

3131
`ON` is similar to `WHERE`, it filters things out according to a test condition. We use the `table.colname` format to tell the SQL manager what column in which table we are referring to.
3232

33-
We can represent this join using the following diagram.
33+
We can represent `a LEFT` join using the following diagram.
3434

3535
![Join Diagram for Example](../assets/img/left-join-articles-journals_40.png)
3636

@@ -118,7 +118,7 @@ ON publishers.id = journals.PublisherId;
118118
> {: .solution}
119119
{: .challenge}
120120
121-
There are different types of joins which you can learn more about at [SQL Joins Explained](http://www.sql-join.com/sql-join-types).
121+
There are different types of joins which you can learn more about at [SQL Joins Explained](https://www.geeksforgeeks.org/sql-join-set-1-inner-left-right-and-full-joins/).
122122
123123
124124
## Aliases

0 commit comments

Comments
 (0)