Artists will only appear in one tuple


Artists (artistID: int, name: varchar(255))
SimilarArtists (artistID: int, simArtistID: int, weight: int)
Albums (albumID: int, artistID: int, name: varchar(255))
Tracks (trackID: int, artistID: int, name: varchar(255), length: int)
TrackLists (albumID: int, trackID: int, trackNum: int)
All primary keys are underlined. All foreign keys have the same name as the primary key that they are referencing. When asking about the similarity of one Artist to another, you can safely assume that the pair of Artists will only appear in one tuple in the SimilarArtists table. Please write SQL statements for the following ten queries:
1. Find the names of all Tracks that are more than 10 minutes (600,000 ms) long.
Result: (name: varchar(255))
2. Find the names of all Artists who have recorded a self-titled Album (the name of the
Album is the same as the name of the Artist).
Result: (name: varchar(255))
3. Find the names of all Artists who have recorded an Album on which the first track is named
"Intro".
Result: (name: varchar(255))
4. Find the names of all Artists who are more similar to Mogwai than to Nirvana (meaning the
weight of their similarity to Mogwai is greater).
Result: (name: varchar(255)) 

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: Artists will only appear in one tuple
Reference No:- TGS095647

Expected delivery within 24 Hours