--两种增量差异的合集:此合集包含3类数据
--1、原始表A存在、比较表B不存在,属于删除类数据,出现次数1
--2、原始表A不存在、比较表B存在,属于新增类数据,出现次数1
--3、原始表A和比较表B都存在,属于修改类数据,出现次数2
Select A1,A2,1 t from (Select * from A minus select * from B) union
Select B1,B2,2 t from (Select * from B minus select * from A);
最后,实现判别出比较表相对于原始表是进行了“插入”、“修改”、“删除”的情况
--SUM(T)为1的为“删除”的数据,SUM(T)为2的为“新增”的数据,SUM(T)为3的为“修改”的数据
Select A1, sum(t)
from (Select A1, A2, 1 t
from (Select * from A minus select * from B)
union
Select B1, B2, 2 t
from (Select * from B minus select * from A))
Group by A1;