While there have been some similar questions I couldn't find a solution for exactly my problem.
I have two tables 'new', 'old' and both have the same schema col1, col2, col3.
Both don't necessarily have the same records, especially new could have more records than old.
Now what I'm looking for is a query the return all records where new.col3 is different from old.col3 (and new.col1 equals old.col1). col3 can have different values or null. col1 is not a PK, so there could be multiple records with the same col1 value.
All my attempts using minuses in different combinations either didn't result in all changes or included rows with both the old as well as the new col3 value. I only need/want the result to contain new.col1, new.col3 for all changed col3 values as explained above.
any help from sql wizards greatly appreciated ;)
col1, how can you tell thatcol3is changed or if it is just a different record? – Gabe Dec 5 '10 at 15:48