I need to return the rows that are NOT duplicated. I am trying to be sure information on one db is the same on another db. I just need the odd rows returned. Is there an opposite of the union function?
EX> Query 1 returns
acct_num product_id count
1507692 100000500 1
1846486 106 3
1846486 100000500 1
Query 2 returns the same.
I want the row returned if they aren't the same.
EX> Query 1 returns
acct_num product_id count
1507692 100000500 1
1846486 106 3
1846486 100000500 1
Query 2 returns the same.
I want the row returned if they aren't the same.