题解 | 每个月Top3的周杰伦歌曲

每个月Top3的周杰伦歌曲

https://www.nowcoder.com/practice/4ab6d198ea8447fe9b6a1cad1f671503

select month,rn as ranking, song_name, cnt as play_pv
from
(
    select month(fdate) as month, play.song_id, count(1) as cnt, song_name,
           row_number() over (partition by month(fdate) order by count(1) desc, play.song_id) as rn
    from play_log play
    join user_info user on play.user_id=user.user_id
    join song_info song on play.song_id=song.song_id
    where age>=18 and age<=25 and year(fdate)=2022 and singer_name='周杰伦'
    group by month(fdate), play.song_id, song_name
) temp
where rn<=3

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务