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: _episodes/06-joins-aliases.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ ON articles.ISSNs = journals.ISSNs;
30
30
31
31
`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.
32
32
33
-
We can represent this join using the following diagram.
33
+
We can represent `a LEFT` join using the following diagram.
34
34
35
35

36
36
@@ -118,7 +118,7 @@ ON publishers.id = journals.PublisherId;
118
118
> {: .solution}
119
119
{: .challenge}
120
120
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/).
0 commit comments