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

每个月Top3的周杰伦歌曲

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

with t as(
select month(fdate) as 'month',
row_number() over(partition by month(fdate),singer_name order by count(song_name) desc,a.song_id) as ranking,
singer_name,
song_name,
count(song_name) as play_pv
from play_log a
left join song_info b on a.song_id=b.song_id
left join user_info c on a.user_id=c.user_id
where year(fdate)='2022' 
and 18<=age and age<=25 
group by month(fdate),singer_name,song_name,a.song_id
order by month(fdate),singer_name,count(song_name) desc,a.song_id
)

select month,ranking,song_name,play_pv
from t where ranking<=3 and singer_name='周杰伦'

临时表储存所有歌手的歌曲排名,在其中筛选周杰伦前三的曲目。

全部评论

相关推荐

11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
头像
11-21 11:39
四川大学 Java
是红鸢啊:忘了还没结束,还有字节的5k 违约金
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务