I have two tables, A and B.
A has two fields, KEY_A and VAL_A.
B has two fields, KEY_B and VAL_B.
Values in KEY_A and KEY_B may overlap.
I want to select all records from A and B into a new table, C with Fields KEY_C and VAL_C. This means I need to combine the values of KEY_A and KEY_B into one field (KEY_C), weeding out the duplicates. How can I do this?
Mike
Start Free Trial