Dovresti specificare un pò meglio. Queste sono due query plausibili per il tuo problema.

codice:
select campo from tabella2 where campo not in (select campo from tabella1)
codice:
select tab1.* from tabella1 as tab1 
left join tabella2 as tab2 on tab1.campo = tab2.campo
where tab2.campo is null