select * from tabellaA where nome not in (select nome from tabellaB)

oppure fai un left join

codice:
select * from tabellaA
left join tabellaB
on tabellaA.nome = tabellaB.nome
where tabellaB.nome is null