用脚本一次update多个字段

update set
   a = b.a
   ,b=b.b
   ,c=b.c
from t a,t b
where (a.条件1) and (b.条件2)
原文地址:https://www.cnblogs.com/maowh/p/3529253.html