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

每个月Top3的周杰伦歌曲

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

select month,ranking,song_name,play_pv
from (
    select month,row_number()over(partition by month order by play_pv desc,song_id asc) ranking,song_name,play_pv
    from(
        select month(p.fdate) as month,s.song_name,p.song_id,count(p.song_id) as play_pv
        from play_log p
        left join song_info s on p.song_id = s.song_id
        left join user_info u on p.user_id = u.user_id
        where s.singer_name = '周杰伦' and year(p.fdate) = '2022'and u.age between 18 and 25
        group by month,s.song_name,p.song_id
    ) as pv
) as rank_pv
where rank_pv.ranking between 1 and 3
order by month asc,ranking asc,song_name desc

全部评论

相关推荐

不愿透露姓名的神秘牛友
04-23 10:48
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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