TABLE 1 is like following
A B
1 x
2 y
3 z
4 t
TABLE 2 is like following
A2 B2
1 k
2 l
3 m
4 n
I want to update Table2.B2 rows 2 and 3 with the values Table1.B rows 2 and 3
so the resulting Table 2 would be
A2 B2
1 k
2 y
3 z
4 n
Updated