题解 | #网易云音乐推荐(网易校招笔试真题)#

网易云音乐推荐(网易校招笔试真题)

https://www.nowcoder.com/practice/048ed413ac0e4cf4a774b906fc87e0e7

# select
# distinct m.music_name
# from
# (
# select music_id
# from music_likes
# where 
#     user_id in (select follower_id from follow where user_id = 1)
#     and 
#     music_id not in (select music_id from music_likes where user_id = 1)
# ) a 
# join music as m on a.music_id = m.id
# order by m.id

select
music_name
from music
where id in 
(
    select music_id from music_likes where user_id in 
    (select follower_id from follow where user_id=1)
)
and id not in 
(
    select music_id from music_likes where user_id=1
)
order by id



全部评论

相关推荐

01-12 17:45
门头沟学院 Java
叁六玖:这样的应该钱不多,以前我也被问,我在问他们实习公工资多少,一般都是2200-2800
找实习记录
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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