描述:现在有两张表,T1由Key和Value两个字段,T2也有Key和Value两个字段
当T1中的Key在T2表中存在时,更新使用T2表中对用的Value 值替换T1中的VAlue
update A set A.Value = B.Value
from T1 as Ajoin T2 as B on A.Key = B.key本文共 220 字,大约阅读时间需要 1 分钟。
描述:现在有两张表,T1由Key和Value两个字段,T2也有Key和Value两个字段
当T1中的Key在T2表中存在时,更新使用T2表中对用的Value 值替换T1中的VAlue
update A set A.Value = B.Value
from T1 as Ajoin T2 as B on A.Key = B.key转载于:https://www.cnblogs.com/xuzhencheng/p/3315990.html