Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Вивчайте Challenge: Rating of Singers | SQL Tasks
Data Manipulation using SQL

book
Challenge: Rating of Singers

Завдання

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.

Рішення

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

Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 3. Розділ 3
SELECT _ _ _
Query ResultQuery Result
No query executed yet...

Запитати АІ

expand
ChatGPT

Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат

some-alt