需求:对比网络隔离的两个数据库DB1和DB2中,同名表的数据差异。以表tab为例,对比其中col列的区别。
步骤1:在DB1中按照表tab的结构创建表tab1;
步骤2:将DB1中tab的数据复制到tab1上:
insert into tab1 select * from tab;
步骤3:在DB2中按照表tab的结构创建表tab2;
步骤4:将DB2中tab的数据复制到tab2上:
insert into tab2 select * from tab;
步骤5:从DB2中导出单表tab2,然后将tab2导入到DB1中。
后续的操作全在DB1上进行。
步骤6:列出tab1中有,但tab2中没有的数据:
select * from tab1 as t1 where not exists(select * from tab2 as t2 where t1.id = t2.id);
步骤6:列出tab2中有,但tab1中没有的数据:
select * from tab2 as t2 where not exists(select * from tab1 as t1 where t1.id = t2.id);
步骤7:列出tab1和tab2中,列col的值不相同的数据:
select t1.id as id, t1.col as z1_col, t2.col as z3_col from tab1 as t1 inner join tab2 as t2 on t1.id = t2.id where (t1.col != z3.col) or (t1.col is null and z3.col is not null) or (t1.col is not null and z3.col is null);
备注:
- 如果两张表原本就在同一个数据库里,则步骤1-5可以跳过。
- 如果两个数据库网络相连,也可以使用Database Link。