If UNION ALL is an addition in T-SQL. What is the equivalent of subtraction?
UNION ALL
For example, if I have a table PEOPLE and a table
PEOPLE
Instead of using UNION, use EXCEPT, ( or INTERSECT to get only records in both ) as described in
msdn EXCEPT Link for Sql2k8
msdn EXCEPT Link for Sql2k5