第一種方法
update 表A set 字段1=‘值’ where 條件限制
update T1 set wpmc='紅筆' where wpmc='藍(lán)筆'
第二種方法
update 表A
set 字段1= (select ‘字段’ from 表B where 表B.對(duì)應(yīng)字段2'=表A.對(duì)應(yīng)字段2)
where 條件限制
update T1 set wpmc=(select spmc from T2 where sptm=wpbm) where isnull(wpmc,'')=''
--這里對(duì)應(yīng)字段2'和對(duì)應(yīng)字段2的名稱要不一致
第三種方法
update 表A set 字段1= 表B.‘字段值’)
from 表A a left join 表B b on a.對(duì)應(yīng)字段=b.對(duì)應(yīng)字段 where 條件限制
update T1 set wpmc=spmc
from T1 left join T2 on T1. wpbm=T2.sptm
where isnull(wpmc,'')=''