千万级别的数据,执行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;
此方法亲测可用,但是创建临时表的时候,注意表空间是否会爆满
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。