From b39a2a518c0c2918e2575f384a9d32e07681b0cb Mon Sep 17 00:00:00 2001 From: maneesha <829690+maneesha@users.noreply.github.com> Date: Fri, 1 Mar 2024 18:53:22 -0500 Subject: [PATCH 1/3] remove "just" --- episodes/00-sql-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/00-sql-introduction.md b/episodes/00-sql-introduction.md index aae78860..20c46f70 100644 --- a/episodes/00-sql-introduction.md +++ b/episodes/00-sql-introduction.md @@ -147,7 +147,7 @@ screen under Database Structure tab. Here you will see a list under "Tables." Ea we were exploring earlier. To see the contents of any table, right-click on it, and then click the "Browse Table" from the menu, or select the "Browse Data" tab next to the "Database Structure" tab and select the wanted table from the dropdown named "Table". This will give us a view that we're used to - a copy of the table. Hopefully this -helps to show that a database is, in some sense, just a collection of tables, +helps to show that a database is, in some sense, a collection of tables, where there's some value in the tables that allows them to be connected to each other (the "related" part of "relational database"). From a53a47dbaad4e09e592559a680518d34e2af871b Mon Sep 17 00:00:00 2001 From: maneesha <829690+maneesha@users.noreply.github.com> Date: Fri, 1 Mar 2024 20:03:37 -0500 Subject: [PATCH 2/3] also rm "simply" --- episodes/03-sql-joins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/03-sql-joins.md b/episodes/03-sql-joins.md index 73918ee6..bebb19df 100644 --- a/episodes/03-sql-joins.md +++ b/episodes/03-sql-joins.md @@ -154,7 +154,7 @@ SELECT COUNT(*) FROM surveys; This is because, by default, SQL only returns records where the joining value is present in the joined columns of both tables (i.e. it takes the *intersection* of the two join columns). This joining behaviour is known as an `INNER JOIN`. -In fact the `JOIN` keyword is simply shorthand for `INNER JOIN` and the two +In fact the `JOIN` keyword is shorthand for `INNER JOIN` and the two terms can be used interchangeably as they will produce the same result. We can also tell the computer that we wish to keep all the records in the first From 70934dea5fbea06962fd2267a2f2c139df3e8196 Mon Sep 17 00:00:00 2001 From: James Foster <38274066+jd-foster@users.noreply.github.com> Date: Mon, 3 Jun 2024 22:15:01 +1000 Subject: [PATCH 3/3] Chagne just to only --- episodes/00-sql-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/00-sql-introduction.md b/episodes/00-sql-introduction.md index 20c46f70..b76c015a 100644 --- a/episodes/00-sql-introduction.md +++ b/episodes/00-sql-introduction.md @@ -147,7 +147,7 @@ screen under Database Structure tab. Here you will see a list under "Tables." Ea we were exploring earlier. To see the contents of any table, right-click on it, and then click the "Browse Table" from the menu, or select the "Browse Data" tab next to the "Database Structure" tab and select the wanted table from the dropdown named "Table". This will give us a view that we're used to - a copy of the table. Hopefully this -helps to show that a database is, in some sense, a collection of tables, +helps to show that a database is, in some sense, only a collection of tables, where there's some value in the tables that allows them to be connected to each other (the "related" part of "relational database").