1、查询表结构,获取主键信息
SHOW CREATE TABLE 表名;
2、创建临时表并写入备份数据
create table 临时表 as select * from 主表 where expdate >= '开始时间' and expdate < '结束时间';
3、重新从源系统采集数据至主表中
4、临时表中有的数据,但在主表中没有,即为源端删除的数据
select * from 临时表 b where b.expdate >= '开始时间' and b.expdate < '结束时间' and not exists ( select 1 from 主表 a where a.主键=b.主键 and a.expdate >= '开始时间' and a.expdate < '结束时间' );
5、主表中有的数据,但在临时表中没有,即为源端新增的数据
select * from 主表 b where b.expdate >= '开始时间' and b.expdate < '结束时间' and not exists ( select 1 from 临时表 a where a.主键=b.主键 and a.expdate >= '开始时间' and a.expdate < '结束时间' );
标签:where,expdate,核对,增删,主表,数据,主键,select From: https://www.cnblogs.com/qq1035807396/p/17560745.html