I would like to compare dt1 to dt2 such that if dt1 A column value exist when it compare to dt2 A column value it would not add a row or change the value in that row. So when the value are different like shown in the example where dt2 has "4" & "5" in A column it will add "4" & "5" to dt1 table but it would not replace it's "1", "2" or "3" value in dt1 A column since it existed already.
Edit: I would like to use A column in a form of a primary key to check something along the line of if "1" exist in A column in both both table then nothing changes but if in there is a A column value in dt2(Example:"4") but not in dt1 then i wan that row of data to merge with dt1 table
dt1
A B C
1 4 7
2 5 8
3 6 9
dt2
A B C
1 10 13
2 12 15
3 11 14
4 1 20
5 12 3
dt1
A B C
1 4 7
2 5 8
3 6 9
4 1 20
5 12 3