I need to do a query that first matches two common fields between two tables, and then display a second field between the two that does not match.
Example:
Number Name 1 Johnson 2 Kerry 3 Hancock 4 Jefferson 5 Harris 6 O'Neal 7 Larkin 8 Millsap 9 Harvey 10 Harrison
Number Name 1 Johnson 2 Howard 3 Hancock 4 Jefferson 5 Harrison 6 O'Neal 7 Larkin 8 James 9 Harvey 10 Harold
I would need the query to match the records by the number column first, and then display the records that do not match the name column. So in this example, it should return numbers 2, 5, 8, 10. I cannot just simply run an unmatched on the two name columns, because as you can tell, 10 would not kick because the last name is also in 5 in the other table.