LxQ
Well-known Member
- Joined
- Feb 9, 2006
- Messages
- 619
I have tables that have similar data and I'd like to find unmatched records based on combinations of fields. For start, let's say I have two tables, each of them having a class_id and a mod_id field as in the following example:
table1
class_id mod_id
class001 mod001
class001 mod002
class002 mod001
table2
class_id mod_id
class001 mod001
class001 mod003
So far, the combination of class001-mod001 combination is in both tables, but the others aren't. I'd like to get a query of the unmatched combinations, or even better, one that shows both what's matching and what's not.
thanks in advance!
table1
class_id mod_id
class001 mod001
class001 mod002
class002 mod001
table2
class_id mod_id
class001 mod001
class001 mod003
So far, the combination of class001-mod001 combination is in both tables, but the others aren't. I'd like to get a query of the unmatched combinations, or even better, one that shows both what's matching and what's not.
thanks in advance!
Last edited: