表A:
Id Name
1 xxx
2 yyy
表B:
Id Name Age
1 aaa 10
3 bbb 18
update B set B.Name=A.Name from B Inner join A on A.Id=B.Id
更新完成后,表B中Id为1的Name就变成xxx了