Simple SELECTS
Which tracks are more expensive than $0.99?
select * from Track where UnitPrice > 0.99;
Which tracks are less expensive than $0.99? (Are there any?)
select * from Track where UnitPrice < 0.99;
Which tracks have the word "love" in the title?
select * from Track where Name like "%love%";
Which track titles begin with the word "love"?
select * from Track where Name like "love%";
Which tracks were composed by Jimi Hendrix?
select * from Track where Composer = 'Jimi Hendrix';
Simple Joins
Which albums are by Aerosmith?
select Name, Title from Artist
join Album on Album.ArtistId = Artist.ArtistId
where Name = "Aerosmith";
Who is the album "Facelift" by?
select Name from Artist
join Album on Album.ArtistId = Artist.ArtistId
where Title = "Facelift";
Which albums are by Amy Winehouse?
select Name, Title from Artist
join Album on Album.ArtistId = Artist.ArtistId
where Name = "Amy Winehouse";
Which tracks are on the album "Frank"?
select Name from Track
join Album on Track.AlbumId = Album.AlbumId
where Album.Title = "Frank";
Which album is the track "Daughter" on?
Select Title, Name from Album
join Track on Track.AlbumId = Album.AlbumId
where Name = "Daughter";
More Complex Joins
Which tracks are by Amy Winehouse?
select Artist.Name, Album.Title, Track.Name from Artist
join Album on Album.ArtistId = Artist.ArtistId
join Track on Album.AlbumId = Track.AlbumId
where Artist.Name = "Amy Winehouse";
Which tracks are on the playlist "Brazilian Music"?
select Playlist.Name, Track.Name from Playlist
join PlaylistTrack on PlaylistTrack.PlaylistId = Playlist.PlaylistId
join Track on PlaylistTrack.TrackId = Track.TrackId
where Playlist.Name = "Brazilian Music";
Which tracks are on the playlist "Brazilian Music" and who are they by?
select Playlist.Name, Track.Name, Artist.Name, Album.Title from Playlist
join PlaylistTrack on PlaylistTrack.PlaylistId = Playlist.PlaylistId
join Track on PlaylistTrack.TrackId = Track.TrackId
join Album on Track.AlbumId = Album.AlbumId
join Artist on Album.ArtistId = Artist.ArtistId
where Playlist.Name = "Brazilian Music";
Aggregation
How many tracks are there on the album "Facelift"?
select count(*) from Track
join Album on Track.AlbumId = Album.AlbumId
where Title = "Facelift";
How many albums are there by Amy Winehouse?
select count(*) from Artist
join Album on Album.ArtistId = Artist.ArtistId
where Name = "Amy Winehouse";
How much would it cost to buy all the tracks?
select SUM(UnitPrice) from Track;
What's the longest track?
select Name, max(Milliseconds) from Track;
What's the shortest track?
select Name, min(Milliseconds) from Track;
How many tracks are there by each of Amy Winehouse's albums?
select Artist.Name, Album.Title, count(*) from Artist
join Album on Album.ArtistId = Artist.ArtistId
join Track on Album.AlbumId = Track.AlbumId
where Artist.Name = "Amy Winehouse"
group by title;
How expensive would it be to buy each of Amy Winehouse's albums?
select Artist.Name, Album.Title, SUM(Track.UnitPrice) from Artist
join Album on Album.ArtistId = Artist.ArtistId
join Track on Album.AlbumId = Track.AlbumId
where Artist.Name = "Amy Winehouse"
group by title;
How many songs are on each playlist? Order by the number of songs on each playlist, most to least.
select Playlist.Name, count(*) from PlaylistTrack
join Playlist on Playlist.PlaylistId = PlaylistTrack.PlaylistId
group by PlaylistTrack.PlaylistId
order by count(*) desc;
How many albums are there for each artist? Arrange by number of albums in descending order and I only want the top 5.
select Artist.Name, count(*) from Artist
join Album on Album.ArtistId = Artist.ArtistId
group by Artist.Name
order by count(*) desc
limit 10;
What are the top 5 longest albums and who are they by?
select Album.Title, Artist.Name, sum(Milliseconds) from Track
join Album on Track.AlbumId = Album.AlbumId
join Artist on Album.ArtistId = Artist.ArtistId
group by Track.AlbumId
order by sum(Milliseconds) desc
limit 5;