There are two same structured tables i.e. One & Two. I want to update one column with values of another table's same column. Have a look at this:
Table One
id name value
1 a 11
2 b 12
3 c 13
Table Two
id name value
1 c 11
2 d 12
3 e 13
I want to update one.name
with the values of two.name
. How do I do that?