标签:
1.用一个表中的某一列更新另外一个表的某些列:
for ACCESS 数据库: update a, b set a.name=b.name1 where a.id=b.id for SQL Server 数据库: update a set a.name=b.name1 from a,b where a.id=b.id
sql 脚本编写之路 常用语句(一)
原文地址:http://www.cnblogs.com/jaysen/p/5724742.html