vote up 2 vote down star
1

If UNION ALL is an "addition" in T-SQL. What is the equivalent of subtraction?

For example, if I have a table PEOPLE and a table EMPLOYEES. And I know if I remove EMPLOYEES records from PEOPLE I will be left with my companies "CONTRACTORS". Is there a way of doing this that is similar to UNION ALL? One where I don't have to specify any field names? The reason I ask is this is just one hypothetical example. I need to do this several times to many different tables. Assume that the schema of EMPLOYEES and PEOPLE are the same.

I'm using Microsoft SQL Server 2005.

flag

68% accept rate

6 Answers

vote up 7 vote down check

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

link|flag
That is exactly what I was looking for. Thanks. – B. Tyndall Dec 16 '08 at 18:44
vote up 0 vote down

I found it is a lot easier to use a tool like SQLMerger to do this for you. The results are displayed in a nicer way and you can go on with whatever you need to do with the data thereafter easily.

www.auisoft.com/SQLMerger <= the tool that makes it easy to compare data

example on comparing two tables: http://auisoft.com/SQLMerger/How-to/visualize-differences-in-2-databases/

link|flag
vote up 1 vote down

Unfortunately there is a problem in your design. instead of having two table PEOPLE and CONTRACTOR. You should have a table PEOPLE and another Table TYPE (if some people can have several role another table maybe needed). In your PEOPLE table you make a referece to the TYPE table.

then you requests become

SELECT * from PEOPLE, TYPE
WHERE PEOPLE.type_id = TYPE.id 
AND TYPE.name = 'CONTRACTOR'

SELECT * from PEOPLE, TYPE
WHERE PEOPLE.type_id = TYPE.id 
AND TYPE.name = 'EMPLOYEE'

(untested)

link|flag
This was just an example. Agree the design is bad. – B. Tyndall Dec 16 '08 at 18:43
vote up 6 vote down

You can use the EXCEPT operator to subtract one set from another. Here's a sample of code using EMPLOYEES and PEOPLE temporary tables. You'll need to use the field names with the EXCEPT operator as far as I know.

CREATE TABLE #PEOPLE
(ID INTEGER,
 Name NVARCHAR(50))

CREATE TABLE #EMPLOYEE
(ID INTEGER,
 Name NVARCHAR(50))
GO

INSERT #PEOPLE VALUES (1, 'Bob')
INSERT #PEOPLE VALUES (2, 'Steve')
INSERT #PEOPLE VALUES (3, 'Jim')
INSERT #EMPLOYEE VALUES (1, 'Bob')
GO

SELECT ID, Name
FROM #PEOPLE
EXCEPT 
SELECT ID, Name
FROM #EMPLOYEE
GO

The final query will return the two rows in the PEOPLE table which do not exist in the EMPLOYEE table.

link|flag
Remember that EXCEPT will only give you DISTINCT values. In your case, if you add another Steve with id =2 then you will only get one of them anyway. Of course, ID would probably be a primary key. – Hakan Winther Oct 13 at 10:23
vote up 5 vote down
SELECT
     P.*
FROM
     People P
LEFT OUTER JOIN Employees E ON
     E.ID = P.ID     -- Or whatever your PK-FK relationship is
WHERE
     E.ID IS NULL

For SQL Server this will probably be the most performant way that you can do it.

link|flag
Two people thought that a solution that returns the right answer was worth voting down without the courtesy of explaining why. When are they going to implement the feature to require a comment for vote-downs? :) – Tom H. Dec 17 '08 at 3:21
A left outer join returns all records from the left table irrespective of whether a match was found in the second table. It cant be used when you want to get just those records from the first table that are not present in the second table. :) – daemonkid Apr 24 at 13:40
1  
Which is why the WHERE clause includes "E.ID IS NULL". Before declaring that something is wrong you should probably understand it and ideally test it. – Tom H. Apr 24 at 14:03
I agree with you, your solution is faster in SQL server. Please read this post sqlservercentral.com/Forums/Topic541726-338-1.aspx/… – Hakan Winther Oct 13 at 10:16
vote up 1 vote down
SELECT * FROM Table1
WHERE Table1.Key NOT IN (SELECT Table2.Key FROM Table2 WHERE Table2.Key IS NOT NULL)

Added IS NOT NULL to make people happy.

I would agree with Tom. His version is most likely more efficient. The only possible reason to use mine, might be that it's prettier.

link|flag
This fails for null values in "Table2.Key". – Tomalak Dec 16 '08 at 18:07
add IS NOT NULL then, if you expect NULL's, but i assume Table2.Key is PK and does not have NULL's – Greg Dean Dec 16 '08 at 18:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.