Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Challenge: Rating of Singers | SQL Tasks
Data Manipulation using SQL

book
Challenge: Rating of Singers

Opgave

Swipe to start coding

Create a rating of the singers: from singer with the biggest average Song's price to the smallest one. Output the singer's name (naming) and avearge price (price) of his/her songs.

Løsning

SELECT singers.naming, AVG(songs.price)
FROM singers
INNER JOIN songs
ON songs.singer_id = singers.id
GROUP BY singers.id
ORDER BY AVG(songs.price) DESC

Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 3. Kapitel 3
SELECT _ _ _
Query ResultQuery Result
No query executed yet...

Spørg AI

expand
ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

some-alt