I have a table let's say it has Color in one field and Shape in the other but in no particular field order:
FIELD1 | FIELD2
---------|----------
Red | Triangle
Red | Square
Red | Circle
Triangle | Red
Square | Red
I am trying to find records that do NOT have a reciprocal record and create one. So in the above table there is no reciprocal for
Red | Circle
while there are for
Red | Triangle
Red | Square
Is there a query that will a) Identify which records don't have reciprocals 2) Create those records?