1、查询user_id=1 关注的人
select follower_id
from follow
where user_id=1
2、查询user_id=1 喜欢的音乐id
select music_id
from music_likes
where user_id=1
3、将music_likes与misic表连接,where筛选满足1条件,不满足2条件的音乐名称,distinct去重
select distinct music_name
from music_likes a
join music b
on a.music_id=b.id
where a.user_id in
   (select follower_id
          from follow
          where user_id=1)
and b.id not in
    (select music_id
     from music_likes
     where user_id=1)
order by b.id;