1、备份数据库
-- 创建一个新的表备份信息
create table PFFLOWSTEP_GP_202405291723 as
select *
from PFFLOWSTEP_GP
where receiver in ('10028846','20000583','20001564','2407','9397')
and state in ('0','2','6','7','9','10','15');
-- 恢复到原表
-- 清空原表恢复
truncate table PFFLOWSTEP_GP; -- 清空原表数据
insert into PFFLOWSTEP_GP select * from PFFLOWSTEP_GP_backup; -- 将备份表数据插入到原表中
-- 覆盖
-- 假设ID是主键或唯一键
REPLACE INTO PFFLOWSTEP_GP
SELECT * FROM PFFLOWSTEP_GP_backup;
-- 只恢复没有重复的 如果唯一约束重复会失败
insert into PFFLOWSTEP_GP
select * from PFFLOWSTEP_GP_backup;