mysql更新10W条记录速度很慢怎么加速?
程序员文章站
2022-03-31 10:12:20
今天 遇到了个问题 update table1 t set t.column1 =0 where t.id in (select id from table2)
就是要更新的数据...
今天 遇到了个问题 update table1 t set t.column1 =0 where t.id in (select id from table2)
就是要更新的数据大概 有10W多条 然后 我执行了下 结果 2个小时了 还是没 执行成功, 后来 问了个 厉害的小伙伴
他把sql 改成了 update table1 t ,table2 b set t.column1=0 where t.id=b.id
几秒钟就执行成功 !!! 特此记录下来