Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I get the set difference of two result sets?

Say I have a result set (just one column in each):

result1:
'a'
'b'
'c'

result2:
'b'
'c'

I want to minus what is in result1 by result2: result1 - result2 such that it equals:

 difference of result1 - result2:
 'a'
share|improve this question

2 Answers

up vote 16 down vote accepted

To perform result1 - result2, you can join result1 with result2, and only output items that exist in result1. For example:

SELECT DISTINCT result1.column
FROM result1 LEFT JOIN result2 ON result1.column = result2.column
WHERE result2.column IS NULL

Note that is not a set difference, and won't output items in result2 that don't exist in result1. It's set subtraction.

See also: http://www.bitbybit.dk/carsten/blog/?p=71

share|improve this answer
Thanks for your clarification, it's been a while since I've worked with MySQL. – Francisco Soto Apr 27 '10 at 18:30

Nevermind my answer, INTERSECT is not supported in MySQL.

Use the inner join approach suggested. :)

share|improve this answer
2  
INTERSECT is not in MySQL. – rjh Apr 27 '10 at 18:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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