Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Let us consider the following relational database. Songs ( albumID , artistID, songTitle, length ) The following SQL query is for retrieving the number of

Let us consider the following relational database.
Songs(albumID, artistID, songTitle, length)
The following SQL query is for retrieving the number of songs with a length of 160 seconds for each artist.
SELECT artistID, COUNT(*)
FROM Songs
WHERE length ='160 sec.';
Which section of the query is illegal?
a. length in the WHERE clause.
b. COUNT(**) in the SELECT clause.
c. artistID in the SELECT clause .
d. The GROUP BY artistID clause should be added.
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions