千万级别的数据,执行delete where 时,非常的慢,不论你有没有索引都是一样的。此时可以采用以下方法折中:
1、创建临时表
create table xx_temp as select * from xx where xxx;
2、直接摧毁原来的表
drop table xx purge; -- 不放回收站
3、拉回数据
insert into table xx select * from xx_temp;
4、摧毁临时表
drop table xx_temp;