Hoping someone could help/not sure if it's even possible...
I have two sets of data, there are duplicates on each side, and they're purposely there. I need an unmatched query with outer joins, but I also need inner joins...
This is for commission reconciliation, so some accounts have more than one payment which is the reason for the duplicates, and for various other system reasons, not all accounts on each side match up. The company requesting the reconciliation sometimes makes mistakes, or sometimes my company makes a mistake. I need all the matched accounts to show up on the query results, but I also need all the UNmatched accounts to show up. Lets say one table has the following:
Acct #(table 1)
11111
11111
22222
33333
THen another table has:
Acct#(table 2)
11111
22222
33333
44444
I need an end result that looks like this:
Acct #(table 1)
11111
11111
22222
33333
_____
Acct #(table 2)
11111
_____
22222
33333
44444
So I need blanks in each table where the matching account # should go, but I don't want to delete ANY account # from either table, and I also don't want duplicates from both tables, like the result should not show 3 account 11111. This might be hard to understand and I don't konw if it's really possible,