I need to fix data in table "tag" using table "tag2",
by match "tag.id" and "tag2.id" and if matched replace "tag2.name" with "tag.name" in "tag" table,
tables structures:
tag:
id name
1 test
2 test
3 test
4 Tom hancks
5 test
6 amazon
7 car
8 BMW
9 search
tag2:
id name
1 Google
2 yahoo
3 Microsoft
4 Tom hancks
5 facebook
to return "tag" table like this:
tag:
id name
1 Google
2 yahoo
3 Microsoft
4 Tom hancks
5 facebook
6 amazon
7 car
8 BMW
9 search