If you can compare the two results on their primary key then a subquery might help. Something like:
Code:
Select * from thisTable where IDfield
not in (select IDfield from thatTable);
That will get you the records that are in thisTable but not in thatTable so you'll need a union with the opposite query to get the records that are in thatTable but not in thisTable.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.