access 更新 && 关联更新

来源:互联网 发布:房子平面设计软件 编辑:程序博客网 时间:2024/04/29 19:11

更新

update 表1 set 表1.A = replace(表1.A,“要替换数据”,“新数据”) where not isnull(表1.A);

关联更新

update 表1 AS a inner join 表2 AS b on a.A=b.B set a.C=b.D where a.E……