Its not really a subtraction I\'m looking for. And I know its not a union or intersection... I have been given a long and complex stored procedure that returns a table of
Assuming there are unique IDs that correspond across the two tables:
select * from table_both b where not exists (select * from table_active a where a.id = b.id)