Hello,
I just figured out how to do a comparison and get only the results of those that are not equal, but I have several more fields that I need to include if the name fields from the table are the same. I have tried a few things and keep getting errors with syntax. Any help is appreciated.
Select Table1.name from Table1 LEFT JOIN Table2 ON (Table1.name = Table2.name)
WHERE (((Table2.name) is Null))
UNION Select Table2.name from Table1 RIGHT JOIN Table2 ON (Table1.name = Table2.name)
WHERE (((Table1.name) is Null));
I just figured out how to do a comparison and get only the results of those that are not equal, but I have several more fields that I need to include if the name fields from the table are the same. I have tried a few things and keep getting errors with syntax. Any help is appreciated.
Select Table1.name from Table1 LEFT JOIN Table2 ON (Table1.name = Table2.name)
WHERE (((Table2.name) is Null))
UNION Select Table2.name from Table1 RIGHT JOIN Table2 ON (Table1.name = Table2.name)
WHERE (((Table1.name) is Null));