Ho realizzato questa soluzione e dalle verifiche che ho fatto sembra funzionare

select id_ana, nominativo from anagrafe where
id_ana not in (select id_ana from eventi where dataevento<20191101 group by id_ana)
and
id_ana in (select id_ana from eventi where dataevento>=20191101 and dataevento<=20191130 group by id_ana)
;

che dite ?