Skip to content
Merged
Changes from 2 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
7 changes: 6 additions & 1 deletion episodes/00-sql-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,14 @@ which is stored as one of its fields.
Records may also contain keys that refer to records in other tables,
which enables us to combine information from two or more sources.


::::::::::::::::::::::::::::::::::::::::::::::::::

The *relational* concept is connected with organizing information across multiple tables in the database.
Comment thread
jd-foster marked this conversation as resolved.
Outdated
The *relationships* between tables in a database can be established (or even enforced) in different ways, through the use of keys and other constraints.
In many small datasets we have only a few tables and we don't have to think about cross-references within datasets.
The idea of *relational data* becomes more and more important as the amount and complexity of data grows. This provides the motivation for using relational databases: to organize data through related keys.
Comment thread
jd-foster marked this conversation as resolved.
Outdated


## Databases

### Why use relational databases
Expand Down