References
curl -LO https://cdn.sqlitetutorial.net/wp-content/uploads/2018/03/chinook.zip
unzip chinook.zipDownload a SQLPro viewer (optional)
brew cask install sqlpro-for-sqlitetracks from album 1
SELECT name, milliseconds, bytes, albumid FROM tracks WHERE albumid = 1;join example
SELECT title 'title', name 'artist'
FROM albums
JOIN artists ON artists.ArtistId = albums.artistId;
join/where example
```sql
SELECT title 'title', name 'artist'
FROM albums
JOIN artists ON artists.ArtistId = albums.artistId
WHERE artists.name='Pearl Jam'