Not sure what you are trying to do. Since it is the same table why don't you just join them without subquery?
The only modification right now I can suggest is the below :
LiedAlbum.IdLied =(SELECT L.Id from Lied L where L.Titel in ('Lifeislife'))
into
exists (select 1 from Lied where Titel = 'Lifeislife' and LiedAlbum.IdLied = Lied.Id)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…