Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The given SQL creates a Song table and inserts some songs. The SELECT statement selects the genre and row count for each genre group. Add
The given SQL creates a Song table and inserts some songs. The SELECT statement selects the genre and row count for each genre group.
Add a new column to the SELECT statement that uses MAX to find the most recent release year for each genre. Then add a HAVING clause that selects only genre groups that have more than one row count.
Run your solution and verify country pop, & and grunge genres, row counts, and most recent release years appear in the result table.
CREATE TABLE Song
ID INT,
Title VARCHAR
Artist VARCHAR
ReleaseYear INT,
Genre VARCHAR
PRIMARY KEY ID
;
INSERT INTO SONg VALUES
'Hey Jude', 'Beatles', 'pop rock'
'You Belong With Me 'Taylor Swift', 'country pop'
'Youl're Still the One', 'Shania Twain', 'country pop'
'Need You Now', 'Lady Antebellum', 'country pop'
'You've Lost That Lovin' Feeling', 'The Righteous Brothers', R&B
'That Is The Way Love Goes', 'Janet Jackson', R&B
'Smells Like Teen Spirit', 'Nirvana', 'grunge'
'Even Flow', 'Pearl Jam', 'grunge'
'Black Hole Sun', 'Soundgarden', 'grunge';
Modify the SELECT statement
SELECT Genre, COUNT
FROM Song
GROUP BY Genre;
Reset code
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started