赞
踩
1.先建临时表,将要修改的字段,和原表唯一匹配的字段加上(我这里需要拿code字段匹配原表中的唯一code字段。可以将临时表中的code设为唯一字段,防止重复)
2.将需要修改的数据导入到临时表中
3.备份原表的数据(一定要记得备份)
4.执行更新语句
update 原表 set 原表字段 = 临时表对应字段 from 临时表 临时表别名 where 原表唯一匹配字段=临时表唯一匹配字段 (and 其它条件);
括号后面的其它条件可按照需求选择加或不加
eg:
update bd_customer set def1 = temp.def11 from bd_customer_temp temp where bd_customer.code = temp.code
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。