Comparing Two Tables 
Author Message
 Comparing Two Tables

I have to tables, one containing the folowing records
1,2,3,4,5,6,7,8,9  and other with these 1,3,5
How can I do a Query that gives me the records in first
table that ARE NOT present in the other one.

Beforehand, thank you very much.



Wed, 06 Apr 2005 00:23:38 GMT  
 Comparing Two Tables
Assume in table1's field1 has value 1, 2, 3, 4, 5,... in table2's field2 has
value 1, 3, 5, ...use this SQL Statement:

SELECT table1.* FROM table1 WHERE table1.field1 NOT IN (SELECT table2.field2
FROM table2)


Quote:
> I have to tables, one containing the folowing records
> 1,2,3,4,5,6,7,8,9  and other with these 1,3,5
> How can I do a Query that gives me the records in first
> table that ARE NOT present in the other one.

> Beforehand, thank you very much.



Wed, 06 Apr 2005 00:36:56 GMT  
 Comparing Two Tables
Norman:

Thank you very much. You cannot imagine how useful was
your help. I appreciate so much your effort to answer me.

Luis

Quote:
>-----Original Message-----
>Assume in table1's field1 has value 1, 2, 3, 4, 5,... in
table2's field2 has
>value 1, 3, 5, ...use this SQL Statement:

>SELECT table1.* FROM table1 WHERE table1.field1 NOT IN

(SELECT table2.field2
Quote:
>FROM table2)


message

>> I have to tables, one containing the folowing records
>> 1,2,3,4,5,6,7,8,9  and other with these 1,3,5
>> How can I do a Query that gives me the records in first
>> table that ARE NOT present in the other one.

>> Beforehand, thank you very much.

>.



Wed, 06 Apr 2005 04:19:01 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Comparing two tables and then updating one table.

2. Key field violation when comparing two tables

3. comparing two tables

4. Which is the best way to compare two tables?

5. How to compare two tables and get the difference with SQL?

6. comparing data in specific fields from two tables ???

7. Comparing Two Access Tables?

8. Compare two access databases, size of tables

9. Two tables, two databases

10. Linking two Access tables in two databases

11. Linking two tables from two diferent databases.

12. combine two columns from two tables?

 

 
Powered by phpBB® Forum Software