I am trying to run a query to find the differences between last name in one table and last name in another. Also first name differences between the two. Here is the SQL. I can't figure out why it's not working. The query returns all as being different.
SELECT DISTINCT MACTABLE.[LAST NAME], MACTABLE.[FIRST NAME], MACTABLE.ROLE
FROM MACTABLE, Lawson
WHERE (((MACTABLE.[LAST NAME])<>Lawson.Last)) Or (((MACTABLE.[FIRST NAME])<>Lawson.First));
SELECT DISTINCT MACTABLE.[LAST NAME], MACTABLE.[FIRST NAME], MACTABLE.ROLE
FROM MACTABLE, Lawson
WHERE (((MACTABLE.[LAST NAME])<>Lawson.Last)) Or (((MACTABLE.[FIRST NAME])<>Lawson.First));