# ALle Promotore, die seit dem 1.1.2014 im Einsatz waren, nicht auf der Blacklist stehen und die nicht gesagt haben sie wollen keine E-Mails select distinct(e.id_promoter),vorname,nachname,email,b.id blacklist from einsatz e join promoter p on p.id=e.id_promoter left join blacklist b on b.id_promoter = p.id where e.datum >= "2014-01-01" and email not like ("idontwantdoitmail_%") having blacklist IS NULL