Suppose these two tables - A and B
table A is
id v1
1 10
3 20
5 20
6 15
table B is
id v2
1 200
2 300
3 200
4 250
5 190
6 290
I want to add "v2" of B to A with the same "id" as follows:
table A should be
id v1 v2
1 10 200
3 20 200
5 20 190
6 15 290
I appreciate your help!