Hi,
i have 2 tables containing data in records. I want to eliminate records which are equal in field1 in both tables: table_1 and table_2.
Example:
table_1: table_2:
field1 field2 field1 field2
record1 a a record1 a a
record2 b b record2 b x
record3 c c
The target is to have a third table containing the "non-equal" records - non equal means: not equal in field1.
So the target table should be:
table_3:
field1 field2
record1 c c (table_1, record3 is not in table_2)
(remark: record b,b/ b,x is equal in field1 an doesn't appear in the target table)
I hope I made sense...
Thanks!
i have 2 tables containing data in records. I want to eliminate records which are equal in field1 in both tables: table_1 and table_2.
Example:
table_1: table_2:
field1 field2 field1 field2
record1 a a record1 a a
record2 b b record2 b x
record3 c c
The target is to have a third table containing the "non-equal" records - non equal means: not equal in field1.
So the target table should be:
table_3:
field1 field2
record1 c c (table_1, record3 is not in table_2)
(remark: record b,b/ b,x is equal in field1 an doesn't appear in the target table)
I hope I made sense...
Thanks!