Forgive me if I've missed the answer to this elsewhere in these forums, and I have read things that seem CLOSE to what I want, but not exactly...
Basically, I have 2 tables that for the sake of simplicity look like this...
Table1
------
Column1(PK)
Column2
Column3
Column4
Table2
------
Column1(PK)
Column2
Column3
Column4
What I want, is to return rows where data differs, that is (Table1.Column2 <> Table2.Column2, Table1.Column3 <> Table2.Column2, etc). Logically, what I want (since the real life usage for this needs to compare the data in 14 different columns) is to somehow return (possibly via expression, although I get foggy when that comes into play) the ColumnName where the data differs, so that I don't have to physically look at the row and manually see what field made one of the 14 conditions true.
I don't know if this is possible, but even if the query didn't return the mismatching column name, it'd still be a TREMENDOUS help!
I apologize for the terrible wording of this thread, but I don't know an easy way to explain this one!
Thanks in advance for any and all help!
Basically, I have 2 tables that for the sake of simplicity look like this...
Table1
------
Column1(PK)
Column2
Column3
Column4
Table2
------
Column1(PK)
Column2
Column3
Column4
What I want, is to return rows where data differs, that is (Table1.Column2 <> Table2.Column2, Table1.Column3 <> Table2.Column2, etc). Logically, what I want (since the real life usage for this needs to compare the data in 14 different columns) is to somehow return (possibly via expression, although I get foggy when that comes into play) the ColumnName where the data differs, so that I don't have to physically look at the row and manually see what field made one of the 14 conditions true.
I don't know if this is possible, but even if the query didn't return the mismatching column name, it'd still be a TREMENDOUS help!
I apologize for the terrible wording of this thread, but I don't know an easy way to explain this one!
Thanks in advance for any and all help!