数据库同步优化技巧分享
程序员文章站
2022-06-24 22:54:43
场景1: 需要将某张表的某些字段全部同步到另一张表的某些字段.
insert into table1(a,b,c,d)
select
a,b,c,d from...
场景1: 需要将某张表的某些字段全部同步到另一张表的某些字段.
insert into table1(a,b,c,d) select a,b,c,d from table2 where not exists(select * from table1 where table2.`a` =table1.`b`) ;
当最后的子查询存在记录时候,则略过.
场景2: 表中新增一个字段,需要重新计算并更新至表中.
如果用脚本来走的话,不使用事务没秒只能更新10条左右,如果有相应算法,可以先 生成更新语句,然后更新.
场景3 关联表,某表字段批量更新至某字段
update oto_payment as a inner join oto_customer as c on a.openid=c.openid
set a.customer_id=c.customer_id;