inblog logo
|
silver
    SQL문제풀기

    [SQL문제풀기] Artist Appearance Count

    silver's avatar
    silver
    Dec 31, 2025
    [SQL문제풀기] Artist Appearance Count
    Contents
    문제내가 작성한 정답

    문제

    StrataScratch - Artist Appearance Count
    StrataScratch
    StrataScratch - Artist Appearance Count
    https://platform.stratascratch.com/coding/9992-find-artists-that-have-been-on-spotify-the-most-number-of-times?code_type=3

    내가 작성한 정답

    MySQL, PostgreSQL, Oracle

    select artist, count(distinct id) "number of appearances" from spotify_worldwide_daily_song_ranking group by artist order by 2 desc;
    Share article

    silver

    RSS·Powered by Inblog