I wonder if it would be possible to compare data in records from 2 structural indentical tables and see only the records which are diffent from in the other table (only from one table at the time)
if you can base this on one field such as name try use the find unmatched query wizard
if you have to compare to more then field
in the query grid select * ,Field1ToCompare&Field1ToCompare&Field1ToCompare&.. as expr1 from table1
in the criteria row in expr1 column not in (select Field1ToCompare&Field1ToCompare&Field1ToCompare&.. as expr1 from table2)
run the query and it should give you the results you want
Hi Bill, I have about 20 fields in this tables, so a Union query would take me to long to seek for the differences. The records are almost the same in this 2 tables except that some records are modified in the second table and there are some additions done, also in the second table.I Think that the solution of jiqjaq is the most efficient way to try.
Is the proposed solution of pwise not almost the some thing as jiqjaq only it makes us of the QBE grid?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.