with t1 as
(select distinct music_id
from music_likes
where user_id in
(select follower_id
from follow
where user_id=1)) 

select distinct music_name
from music join t1 on music.id=t1.music_id
where music.id not in
(select music_id
from music_likes
where user_id=1
)