How compare data between 2 tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a query option to compare data differences between 2 tables with the
same structure?
 
Hi,


Such as finding unmatched record? The wizard allows you to use just one
field, but you can "add" more fields:


SELECT a.*

FROM a LEFT JOIN b
ON a.f1=b.f1 AND a.f2=b.f2 AND a.f3=b.f3 AND a.f4=b.f4

WHERE b.f1 IS NULL



Hoping it may help,
Vanderghast, Access MVP
 
Back
Top