Skip to content

Commit

Permalink
differences for PR #371
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 3, 2024
1 parent 63af1f0 commit f20bd80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 00-sql-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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, 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").

Expand Down
2 changes: 1 addition & 1 deletion 03-sql-joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions md5sum.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"NEWS.md" "84aa522251c8b0043f12e83af45cc3d8" "site/built/NEWS.md" "2023-04-21"
"config.yaml" "0928fbefeca4f51e54ccc3687a9565e9" "site/built/config.yaml" "2023-04-21"
"index.md" "cfdee7444b27a96171c25e1d4915e1e9" "site/built/index.md" "2023-06-07"
"episodes/00-sql-introduction.md" "702a6c1b841bc4729bb2d8e0b358532e" "site/built/00-sql-introduction.md" "2023-04-21"
"episodes/00-sql-introduction.md" "7d1b818440079d96e395c6777b18cf50" "site/built/00-sql-introduction.md" "2024-06-03"
"episodes/01-sql-basic-queries.md" "31fc6d3e21d679cab6a002bffe7c182d" "site/built/01-sql-basic-queries.md" "2023-04-21"
"episodes/02-sql-aggregation.md" "07784e3014a42660059c18e6ba71f26d" "site/built/02-sql-aggregation.md" "2023-04-21"
"episodes/03-sql-joins.md" "4c87f9451d13eaa88c1b38fe29c7a7f3" "site/built/03-sql-joins.md" "2023-06-30"
"episodes/03-sql-joins.md" "7ce22e3c1e1719ad50edbcd72e333013" "site/built/03-sql-joins.md" "2024-06-03"
"instructors/instructor-notes.md" "105728ef72c768e968ca9d11c2a14109" "site/built/instructor-notes.md" "2023-04-21"
"learners/discuss.md" "c5994f9f17e9da0d08a530600084ba55" "site/built/discuss.md" "2023-04-21"
"learners/reference.md" "83dc790413398fce3bb07518546928fa" "site/built/reference.md" "2023-10-19"
Expand Down

0 comments on commit f20bd80

Please sign in to comment.