mysql 表B字段替换表A字段

来源:互联网 发布:桑拿软件 编辑:程序博客网 时间:2024/05/18 21:41
update crm_customer set crm_customer.email = (select crm_customer_tmp.email from crm_customer_tmp where crm_customer.code = crm_customer_tmp.code) where id > 0;
阅读全文
0 0