I have two tables that have the same fields. I want to compare each field of one table with the fields of the other table and report back any difference in the data.
I would like to do this in a dynamic way with out having to hard code the name of the fields in my query. Is this even possible or should I find a solution to this by using Python?
Example of tables:
TABLE 1 TABLE 2
FIELD1 : VALUE1 FIELD1 : VALUE1
FIELD2 : VALUE2 FIELD2 : VALUE2
FIELD3 : VALUE3 FIELD3 : VALUE3xxx
Query goes through all the fields and then says "A ha" Field3 do not match, I must show this to the end user"