SQL Server 2008 shipped with several enhancements to the T-SQL language. In a recent blog, we looked at the new MERGE syntax; today we are going to look at the new EXCEPT and INTERSECT syntax. Both of these operators allow you to compare results of two queries. Using EXCEPT, you can find all the rows that exist in one query but not the other. Using INTERSECT, you can find all the rows that are the same in both tables. This makes more sense with an example so let’s take a look. I took a copy of the HumanResources.Employee table from AdventureWorks and made two copies called Employee1 and Employee2. Then to give us different results, I ran the following delete statement.
DELETE FROM Employee1 WHERE EmployeeID < 10
DELETE FROM Employee2 WHERE EmployeeID > 300
This gives us two tables that have matching records as well as unique records that the other table doesn’t have. Now we can explore the statements. First let’s run an EXCEPT comparison.
SELECT * FROM Employee1
EXCEPT
SELECT * FROM Employee2
This will return the rows in Employee1 that are not also found in Employee2, in this case all the records with an EmployeeID that is greater than 300. Reversing the location of the SELECT statements would return all the rows in Employee2 that were not also found in Employee1, all rows with an EmployeeID less than 10.
Next let’s use INTERSECT . The following statement will retun all the records that are contained in both queries, in our case all records with an EmployeeID between 10 and 300.
SELECT * FROM Employee2
INTERSECT
SELECT * FROM Employee1
These are great little additions to T-SQL that allow you to do some quick comparision work on your result sets. With a few twists, you could even write a query that returns all rows from both tables with no match in the other table. Next time you find yourself with data to compare, give EXCEPT and INTERSECT a shot.