Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
SELECT distinct  source_IP, timestamp FROM  tb1 , tb2 WHERE tb1.source_IP 
not in ( SELECT source_IP FROM tb2 WHERE tb1.source_IP = tb2.source_IP) 
AND tb1.timestamp not in 
( SELECT timestamp FROM tb2 WHERE tb1.timestamp = tb2.timestamp )

The above query has been written to compare attributes (source_IP and timestamp) of tb1 with the same attributes in tb2 and select only the distinct ones that belong to tb1. However, this query is working fine, but I am looking for better way to make it more efficient, since there are three queries in the statement. Any suggestions please.

share|improve this question

2 Answers

You can use not exists. Like this:

SELECT DISTINCT 
   tb1.source_IP, 
   tb1.timestamp 
FROM 
   tb1 
WHERE NOT EXISTS
   (SELECT NULL FROM tb2 
    WHERE tb1.source_IP=tb2.source_IP AND tb1.timestamp=tb2.timestamp)
share|improve this answer
Thank you, it's working fine, but with "EXISTS" instead of "NOT EXISTS", since it will return NULL in case of finding any similarity. – Aymen Apr 20 '12 at 8:35
1  
Do you mean the SELECT NULL. You can have what ever you want there SELECT 1,SELECT 'tut' or what ever – Arion Apr 20 '12 at 8:39
@Aymen : Remember to up vote the answer you think are good. That gives us all a warm fuzzy feeling :P – Arion Apr 20 '12 at 8:40
1  
OK, you deserve it. Thanks. – Aymen Apr 20 '12 at 8:56
Great:P.. No problem :) – Arion Apr 20 '12 at 9:20
up vote 0 down vote accepted

Thanks God, this query is working fine:

SELECT source_IP, timestamp FROM tb1 WHERE  source_IP NOT IN (SELECT source_IP FROM tb2) 
AND timestamp NOT IN (SELECT timestamp FROM tb2)

Thanks to Roee Adler compare differences between two tables in mysql

share|improve this answer

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.