Show navigation

Week 1: Introduction to Databases

This week we're starting! We're going to start by reviewing the course outline. After that, we'll learn: what a database is, and how databases are used in web development; what SQL is; basic SQL terms definitions; simple single-table queries.

Each thing gets its own row.
Each type of data gets its own column.
We put the individual bits of data in cells.
This is an interactive code editor. Click the 'Run' button to select records from the database.




Our sample data

We're going to work with a database called 'Chinook'. It's a popular sample database, based around the data that a record store would use. Below are names of the tables it uses.
Artist
Album
Customer
Employee
Genre
Invoice
InvoiceLine
MediaType
Playlist
PlaylistTrack
Track










Week 1: Introduction to Databases