日期:2014-05-17 浏览次数:20523 次
UPDATE A SET A.col = B.col FROM B WHERE .... ------解决方案--------------------
--假设你要将B表中的字段f1,f2更新到A表中的f3,f4。我想你A,B两表应该有相关联的主键吧,假设它为id update A set f3=B.f1,f4=B.f2 from A t inner join B on t.id=B.id