一个修改的问题表A字段 id name 表 B 字段 id name 要更新B表 用A的name替换B的name 当b的id=a的id时 [解决办法]Update B Set name = A.name From A, B Where A.id = B.id