How to combine two tables and dedup records from one table

G

Guest

I'm trying to combine two tables of like data and end up with unique records
from one of the tables. In essence, place one set of data over the other and
end up with the unique difference from the one table but not have the unique
records from the other. Is this even possible.
 
S

Steve Schapel

CA,

Are you able to give an example of what you want? Might make it easier
to understand.
 
A

arthurjr07

SELECT * FROM Table1
UNION
SELECT * FROM Table2 where Field1 not in ( Select Distinct Field1 From
Table1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top