C
chaddy23
I have 2 tables where I need to find what is not in another table. Table
values include
Table 1
Office #;State
1;WI
1;AZ
1;IL
2;WI
2;FL
TAble 2
Office #;State
1;WI
1;AZ
2;WI
2;FL
So what I need is to find Office # and State which is not matching in Table 1.
In the example I should get 1 record back i.e. 1;IL
I am pulling my hair out trying to figure out why I cannot get this to work.
I have to basically not match on the combination of the Office # and State.
We are trying to clean up records where they dont match.
values include
Table 1
Office #;State
1;WI
1;AZ
1;IL
2;WI
2;FL
TAble 2
Office #;State
1;WI
1;AZ
2;WI
2;FL
So what I need is to find Office # and State which is not matching in Table 1.
In the example I should get 1 record back i.e. 1;IL
I am pulling my hair out trying to figure out why I cannot get this to work.
I have to basically not match on the combination of the Office # and State.
We are trying to clean up records where they dont match.