Question: SQL QUERIES d. Write SQL that shows how many albums are in each genre, assigning an alias to the column showing the count, and displaying
SQL QUERIES
d. Write SQL that shows how many albums are in each genre, assigning an alias to the column showing the count, and displaying the genre with the most albums first. e. Write SQL query that shows how many songs are in each genre after the year 2000. The column with the count must be assigned an alias. Query results should include enough information to validate results. f. Write SQL query that shows every song with the word love in its title, the album it appeared on, and the artist that performed the song.
TABLES (with columns): ALBUM
-album_id
-album_name
-album_year
-label_id
-genre_id
ARTIST
-artist_id
-artist_name
GENRE
-genre_id
-genre_name
SONG
-artist_id
-album_id
-track_num
-song_name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
