Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove "just" #371

Merged
merged 3 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion episodes/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 episodes/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
jd-foster marked this conversation as resolved.
Show resolved Hide resolved
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
Loading