I want to do this, but with the results of the stored procedure:
select * from table where column=whatever
except
select * from table2 where column=whatever
So
exec sp1 args
except
exec sp2 args
my sps have no return values, they just take arguments and return the results of select statements
source
share