Я не очень понял, но, возможно, нужно одним запросом получить все, чего нет в А? Например связка из
create temporary table temptable...
insert into temptable values ()()()...
select * from temptable where not exists (select * from a where a.field = temptable.field)
drop temptable