Homework #1 - SQL

Overview

The first homework is to construct a set of SQL queries for analyzing a dataset that will be provided to you. For this, you will look into MusicBrainz data. This homework is an opportunity to: (1) learn basic and certain advanced SQL features, and (2) get familiar with using two full-featured DBMSs, SQLite and DuckDB, that can be useful for you in the future.

This is a single-person project that will be completed individually (i.e., no groups).

Specification

The homework contains 10 questions in total and is graded out of 100 points. For each question, you will need to construct a SQL query that fetches the desired data. Your answer for each question should contain only one statement. For Q2, Q3, Q4 you are required to use both SQLite and DuckDB, and for the other questions you are free to use either. It will likely take you approximately 8-10 hours to complete the questions.

Placeholder Folder

Create the placeholder submission folder with the empty SQL files that you will use for each question:

$ mkdir placeholder
$ cd placeholder
$ touch q1_sample.$DBMS.sql \
        q2_solo_artist.duckdb.sql \
        q2_solo_artist.sqlite.sql \
        q3_german_female_artists.duckdb.sql \
        q3_german_female_artists.sqlite.sql \
        q4_longest_name.duckdb.sql \
        q4_longest_name.sqlite.sql \
        q5_oldest_releases.$DBMS.sql \
        q6_same_year_releases.$DBMS.sql \
        q7_pso_friends.$DBMS.sql \
        q8_symphony_orchestra.$DBMS.sql \
        q9_non_us_release_per_decade.$DBMS.sql \
        q10_canadian_will.$DBMS.sql

$DBMS = duckdb or sqlite depending on which DBMS you answered that question with

After filling in the queries, you can compress the folder by running the following command:

$ zip -j submission.zip placeholder/*.sql

The -j flag lets you compress all the SQL queries in the zip file without path information. The grading scripts will not work correctly unless you do this.

Instructions

  1. Download the database dump file:
    $ wget https://15445.courses.cs.cmu.edu/spring2024/files/musicbrainz-cmudb2024.db.gz
    Check its MD5 checksum to ensure that you have correctly downloaded the file:
    $ md5sum musicbrainz-cmudb2024.db.gz
    e0c1d36c1ab4cf5b13afff520b4554a2  musicbrainz-cmudb2024.db.gz
  2. Unzip the database from the provided database dump by running the following commands on your shell. Note that the database file be 865MB after you decompress it.
    $ gunzip musicbrainz-cmudb2024.db.gz
    We have prepared a sample of the original dataset for this assignment. Although this is not required to complete the assignment, the complete dataset is available by following the steps here.

Then follow the instructions below to install SQLite and DuckDB.

SQLite

You will first need to install SQLite on your development machine.

Make sure that you are using at least SQLite version 3.25! Older releases (prior to 2019) will not support the SQL features that you need to complete this assignment.

Then follow these instructions to load the dataset:

  1. Check if sqlite3 is properly working by following this tutorial.
  2. Check the contents of the database by running the .tables command on the SQLite terminal. You should see 15 tables, and the output should look like this:
    $ sqlite3 musicbrainz-cmudb2024.db
    SQLite version 3.32.3
    Enter ".help" for usage hints.
    sqlite> .tables
    area                artist_credit_name  medium              release_status
    artist              artist_type         medium_format       work
    artist_alias        gender              release             work_type
    artist_credit       language            release_info
  3. Check the indexes by running the .indexes command on the SQLite terminal. You should see 13 indexes, and the output should look like this:
    sqlite> .indexes
    ix_artist_alias           ix_medium_format_id       ix_work_name            
    ix_artist_area            ix_medium_release         ix_work_type            
    ix_artist_credit_id       ix_release_artist_credit  ix_work_type_name       
    ix_artist_credit_name     ix_release_id           
    ix_artist_name            ix_release_info_release
    where the indexes are created by the following commands:
    CREATE INDEX ix_artist_name ON artist (name);
    CREATE INDEX ix_artist_area ON artist (area);
    CREATE INDEX ix_artist_credit_name ON artist_credit_name (artist_credit);
    CREATE INDEX ix_artist_credit_id ON artist_credit (id);
    CREATE INDEX ix_artist_alias ON artist_alias(artist);
    CREATE INDEX ix_work_name ON work (name);
    CREATE INDEX ix_work_type ON work (type);
    CREATE INDEX ix_work_type_name ON work_type (name);
    CREATE INDEX ix_release_id ON release (id);
    CREATE INDEX ix_release_artist_credit ON release (artist_credit);
    CREATE INDEX ix_release_info_release ON release_info (release);
    CREATE INDEX ix_medium_release ON medium (release);
    CREATE INDEX ix_medium_format_id on medium_format (id);

DuckDB

Please follow the instructions to install DuckDB version 0.9.2 for the command line environment.

  1. To load the dataset into DuckDB, we use the SQLite Scanner extension in DuckDB. Install the extension on the DuckDB terminal:
    $ duckdb                         
    v0.9.2 3c695d7ba9
    Enter ".help" for usage hints.
    Connected to a transient in-memory database.
    Use ".open FILENAME" to reopen on a persistent database.
    D INSTALL sqlite_scanner;
  2. Then, we open musicbrainz-cmudb2024.db on the DuckDB terminal:
    D .open musicbrainz-cmudb2024.db
    Alternatively, we can directly load the dataset when we start DuckDB:
    $ duckdb musicbrainz-cmudb2024.db
    v0.9.2 3c695d7ba9
    Enter ".help" for usage hints.
    D 
  3. You can check the contents of the database by running the .tables command and the .indexes on the DuckDB terminal. You should see 15 tables and 13 indexes. The output should look like this:
    D .tables
    area                artist_credit_name  medium              release_status    
    artist              artist_type         medium_format       work              
    artist_alias        gender              release             work_type         
    artist_credit       language            release_info
    D .indexes
    ix_artist_alias           ix_medium_format_id       ix_work_name            
    ix_artist_area            ix_medium_release         ix_work_type            
    ix_artist_credit_id       ix_release_artist_credit  ix_work_type_name       
    ix_artist_credit_name     ix_release_id           
    ix_artist_name            ix_release_info_release

Check the schema

Get familiar with the schema (structure) of the tables (what attributes do they contain, what are the primary and foreign keys). Run the .schema $TABLE_NAME command on the sqlite3 terminal for each table. The output should look like the example below for each table.

area

sqlite> .schema area
CREATE TABLE [area] (
   [id] INTEGER,
   [name] TEXT,
   [comment] TEXT
);

Contains details for an area. For example, this is a row from the table:

95339|Great Neck|village

For us, the important field is name (e.g., "Great Neck").

artist

sqlite> .schema artist
CREATE TABLE [artist] (
   [id] INTEGER,
   [name] TEXT,
   [begin_date_year] INTEGER,
   [begin_date_month] INTEGER,
   [begin_date_day] INTEGER,
   [end_date_year] INTEGER,
   [end_date_month] INTEGER,
   [end_date_day] INTEGER,
   [type] INTEGER,
   [area] INTEGER,
   [gender] INTEGER,
   [comment] TEXT
);
CREATE INDEX ix_artist_name ON artist (name);
CREATE INDEX ix_artist_area ON artist (area);

Contains details of an artist. For example, this is a row from the table:

519|Michael Jackson|1958|8|29|2009|6|25|1|222|1|"King of Pop"

For us, the important fields are name (e.g., "Michael Jackson") and area (e.g., 222).

artist_alias

sqlite> .schema artist_alias
CREATE TABLE [artist_alias] (
   [id] INTEGER,
   [artist] INTEGER,
   [name] TEXT
);
CREATE INDEX ix_artist_alias ON artist_alias(artist);

Contains alternate names for the artists. For example, this is a row from the table:

125604|916107|AOA

artist_credit

sqlite> .schema artist_credit
CREATE TABLE [artist_credit] (
   [id] INTEGER,
   [name] TEXT,
   [artist_count] INTEGER
);
CREATE INDEX ix_artist_credit_id ON artist_credit (id);

Contains lists of artists. For example, this is a row from the table:

966419|Bounty Killer feat. Beenie Man & Dennis Brown|3

artist_credit_name

sqlite> .schema artist_credit_name
CREATE TABLE [artist_credit_name] (
   [artist_credit] INTEGER,
   [position] INTEGER,
   [artist] INTEGER,
   [name] TEXT
);
CREATE INDEX ix_artist_credit_id ON artist_credit (id);

Contains mappings from artist credits to artists. For example, this is a row from the table:

966419|0|39320|Bounty Killer

artist_type

sqlite> .schema artist_type
CREATE TABLE [artist_type] (
   [id] INTEGER,
   [name] TEXT
);

Contains details of an artist type. For example, this is a row from the table:

1|Person

gender

sqlite> .schema gender
CREATE TABLE [gender] (
   [id] INTEGER,
   [name] TEXT,
   [description] TEXT
);

Contains details for a gender type. For example, this is a row from the table:

1|Male|NULL

language

sqlite> .schema language
CREATE TABLE [language] (
   [id] INTEGER,
   [name] TEXT
);

Contains details for a language type. For example, this is a row from the table:

120|English

medium

sqlite> .schema medium
CREATE TABLE [medium] (
   [id] INTEGER,
   [release] INTEGER,
   [position] INTEGER,
   [format] INTEGER,
   [name] TEXT
);
CREATE INDEX ix_medium_release ON medium (release);

Contains details for a medium. For example, this is a row from the table:

287750|287750|1|8|NULL

For us, the important fields are release (e.g., 287750) and type (e.g., 8).

medium_format

sqlite> .schema medium_format
CREATE TABLE [medium_format] (
   [id] INTEGER,
   [name] TEXT,
   [description] TEXT
);
CREATE INDEX ix_medium_format_id on medium_format (id);

Contains details for a medium format. For example, this is a row from the table:

1|CD|NULL

release

sqlite> .schema release
CREATE TABLE [release] (
   [id] INTEGER,
   [name] TEXT,
   [artist_credit] INTEGER,
   [status] INTEGER,
   [language] INTEGER,
   [comment] TEXT
);
CREATE INDEX ix_release_id ON release (id);
CREATE INDEX ix_release_artist_credit ON release (artist_credit);

The table contains music releases. For example, this is a row from the table:

1671523|Back to the Future, Part III: Original Motion Picture Soundtrack|21443|1|120|25th anniversary edition

release_info

sqlite> .schema release_info
CREATE TABLE [release_info] (
   [release] INTEGER,
   [area] INTEGER,
   [date_year] INTEGER,
   [date_month] INTEGER,
   [date_day] INTEGER
);
CREATE INDEX ix_release_info_release ON release_info (release);

The table contains the detailed information of a release. For example, this is a row from the table:

1966419|222|2017|1|13

release_status

sqlite> .schema release_status
CREATE TABLE [release_status] (
   [id] INTEGER,
   [name] TEXT,
   [description] TEXT
);

Contains the details of a release status. For example, this is a row from the table:

1|Official|Any release officially sanctioned by the artist and/or their record company. Most releases will fit into this category.

work

sqlite> .schema work
CREATE TABLE [work] (
   [id] INTEGER,
   [name] TEXT,
   [type] INTEGER,
   [comment] TEXT
);
CREATE INDEX ix_work_name ON work (name);
CREATE INDEX ix_work_type ON work (type);

Contains the details of a work. For example, this is a row from the table:

12446282|Thousand Miles Behind|17|NULL

work_type

sqlite> .schema work_type
CREATE TABLE [work_type] (
   [id] INTEGER,
   [name] TEXT,
   [description] TEXT
);
CREATE INDEX ix_work_type_name ON work_type (name);

Contains the details of a work type. For example, this is a row from the table:

14|Quartet|A quartet is a musical composition scored for four voices or instruments.

Sanity Check

Count the number of rows in the table

sqlite> select count(*) from artist;
1682989

The following figure illustrates the schema of these tables: schema

Construct the SQL Queries

It's time to start constructing the SQL queries and put them into the placeholder files. You can start with using SQLite.

Q1 [0 points]

The purpose of this query is to make sure that the formatting of your output matches exactly the formatting of our auto-grading script.

File: q1_sample

Details: List all the artist types ordered alphabetically.

Answer: Here's the correct SQL query and expected output:

sqlite> select distinct(name) from artist_type order by name;
Character
Choir
Group
Orchestra
Other
Person

You should put this SQL query into the appropriate file (q1_sample.$DBMS.sql) in the submission directory (placeholder).

Q2 [10 points]

Find all artists born in the 1970s in England who have independently released music (without collaborators). List them in alphabetical order by artist name.

File: q2_solo_artist

Hints: The artist_count field in artist_credit denotes the number of artists involved in a release. England is an area name. Only consider artists who is a Person.

Your output should look like this:

ARTIST_NAME

Your first row should look like this:

Bashful

Q3 [10 points]

Find the ten latest releases by female artists in the German language. Order the results by release date from newest to oldest, and then by release name and artist name alphabetically.

File: q3_german_female_artists

Details: If there are releases with identical names and dates by the same artist, treat them as a single release and avoid duplicate entries. Format the release_date in the result as YYYY-MM-DD, without adding a leading zero if the month or day is less than 10.

Your output should look like this:

RELEASE_DATE|RELEASE_NAME|ARTIST_NAME

Your first row should look like this:

2020-9-25|The Songs of Johannes Brahms ~ 10|Sophie Rennert

Q4 [10 points]

List the artist groups with the longest names in each area where the area name starts with the letter "Z". Organize the final output by sorting first by area name and then by artist name in alphabetical order. If multiple groups within the same area share the longest names, include them all.

File: q4_longest_name

Hints: Group is an artist_type. If multiple areas have different id, but the same name, consider them as the same area.

Your output should look like this:

AREA_NAME|ARTIST_NAME

One of the rows in the output looks like the following:

Zaandam|TheBeatVillain
Note: At this point you should have completed three queries (Q2/Q3/Q4) in SQLite. Construct the queries again in DuckDB and compare their performance. You can turn on timer in both systems by running the following command in the DBMS terminal:
sqlite> .timer on 

After this question, you are free to choose either SQLite or DuckDB for the remaining questions.

Q5 [10 points]

Identify the ten most accomplished artists beginning in 1989 in the United States. For each artist, list their oldest five releases that has a valid release date. Organize the results first by the level of each artist's accomplishments, and then by release name alphabetically, and finally by the release date of each work, starting from the oldest to the newest.

File: q5_oldest_releases

Details: We assess an artist's success by their number of releases. A date is valid if it has non-null values for the year, month, and day. To identify the most accomplished artists, simply use the release id to eliminate duplicate releases. To select their five oldest releases, consider releases with the same names and dates by the same artist as a single release. Format release_date in the output as YYYY-MM-DD, without adding a leading zero if the month or day is less than 10.

Hints: You might find Lateral Joins in DuckDB useful: find out the ten most accomplished artists first, and then use lateral join to find their oldest five releases.

Your output should look like this:

ARTIST_NAME|RELEASE_NAME|RELEASE_DATE

Your first row should look like this:

Marilyn Manson|Get Your Gunn|1994-6-9

Q6 [10 points]

Find the Orchestra artists whose first release and second release were in the same year between 2001 and 2010 (inclusive). Order the result by release year from oldest to newest, and then by artist name, first release name, and second release name alphabetically.

File: q6_same_year_releases

Details: If there are releases with identical names and dates by the same artist, treat them as a single release and avoid duplicate entries. Only consider releases with a valid date. If two releases occurred on the same date, we consider the release with the name that comes first in alphabetical order as the first release.

Your output should look like this:

RELEASE_YEAR|ARTIST_NAME|FIRST_RELEASE_NAME|SECOND_RELEASE_NAME

Your first row should look like this:

2001|Aachener Studentenorchester|ASO-Konzert WS 2000/2001|ASO-Konzert SS 2001

Q7 [10 points]

Find the top 15 favorite collaborators of the Pittsburgh Symphony Orchestra, and include the total count of releases from their collaborations. Exclude the Pittsburgh Symphony Orchestra itself from the final results. List the results in descending order based on the collaborator's number of collaborations with Pittsburgh Symphony Orchestra, and then by collaborator name alphabetically.

File: q7_pso_friends

Details: An artist is considered a collaborator if they appear in the same artist credit. An artist's favorite collaborator is determined by collaborating with the artist for the highest number of releases. Please always use the name field in the artist table when searching for a specific artist name.

Your output should look like this:

COLLABORATOR_NAME|RELEASE_COUNT

Your first row should look like this:

Lorin Maazel|24

Q8 [10 points]

For each symphony orchestra, find the year with the highest number of CD releases. In case of a tie, choose the earlier year. Only include the years with a minimum of three CD releases for each symphony orchestra. Arrange the results in descending order based on release count and in alphabetical order by artist name. Exclude releases where the year is not specified.

File: q8_symphony_orchestra

Hints: An artist is a symphony orchestra if its name contains symphony case-insensitively, and its artist_type is Orchestra. Any release with a medium format name containing the word CD is considered a CD release. In cases where two artists share the same name but have distinct artist IDs, treat them as separate artists and include both in the output, if applicable.

Your output should look like this:

ARTIST_NAME|YEAR|CD_RELEASE_COUNT

Your first row should look like this:

London Symphony Orchestra|1994|63

Q9 [15 points]

For all artist groups established in the United States between 1930 and 1979 (inclusive), determine the number of non-US releases made by each group within the same decade of their formation. Present the total number of such releases for each decade.

File: q9_non_us_release_per_decade

Details: Print the decade in a fancier format by constructing a string that looks like this: 1960s. Order the results by decade, in ascending order.

Your output should look like this:

DECADE|RELEASE_COUNT

Your first row should look like this:

1930s|2

Q10 [15 points]

Find all artists whose names start with Will case-insensitively, and who have releases in Canada but not in the United States. For each artist, list the number of areas where they have releases, followed by a list of the area names in alphabetical order, separated by commas. List the results in descending order based on area count and in alphabetical order by artist name.

File: q10_canadian_will

Your output should look like this:

ARTIST_NAME|AREA_COUNT|AREA_NAMES

The first output row should look like this:

Will Long│3│Canada,Japan,[Worldwide]

Grading Rubric

Each submission will be graded based on whether the SQL queries fetch the expected sets of tuples from the database. Only one statement is allowed in each SQL query. Note that your SQL queries will be auto-graded by comparing their outputs (i.e. tuple sets) to the correct outputs. For your queries, the order of the output columns is important; their names are not.

Late Policy

See the late policy in the syllabus.

Submission

We use the Autograder from Gradescope for grading in order to provide you with immediate feedback. After completing the homework, you can submit your compressed folder submission.zip (only one file) to Gradescope:

Important: Use the Gradescope course code announced on Piazza.

We will be comparing the output files using a function similar to diff. You can submit your answers as many times as you like.

Collaboration Policy

WARNING: All of the code for this project must be your own. You may not copy source code from other students or other sources that you find on the web. Plagiarism will not be tolerated. See CMU's Policy on Academic Integrity for additional information.