- My T-SQL statement A returns 1100 rows when I add an extra JOIN in.
- My T-SQL statement B returns 990 rows when I don’t have that extra JOIN.
The two statements are identical besides for the extra JOIN on statement A.
How can I return just the 110 records from the two T-SQL statements that are not in the result set of statement B?
Do you mean EXCEPT or INTERSECT?