java程序对Oracle两张表结构相似的表的数据对比,具体如下 100
table_a{A主键,B字段,C字段,D字段,E字段}table_b{A主键,B字段,C字段,D字段,E字段}需求:对比table_a跟table_b的主键对比,得到结...
table_a{
A 主键,
B 字段,
C 字段,
D 字段,
E 字段
}
table_b{
A 主键,
B 字段,
C 字段,
D 字段,
E 字段
}
需求:对比 table_a 跟 table_b 的主键对比,得到结果 1.a表主键存在,b表不存在;2.a表主键不存在,b表存在;3.a表和b表都存在一样的主键,那么就 a表的B字段跟b表的B字段对比, a表的C字段跟b表的C字段对比 。可以在数据库方面使用函数、 存储过程等。还有 两张表的数据可能超过千万条,求各位大神有没有好的建议。
这边只能悬赏100,,分数还可以追加的 展开
A 主键,
B 字段,
C 字段,
D 字段,
E 字段
}
table_b{
A 主键,
B 字段,
C 字段,
D 字段,
E 字段
}
需求:对比 table_a 跟 table_b 的主键对比,得到结果 1.a表主键存在,b表不存在;2.a表主键不存在,b表存在;3.a表和b表都存在一样的主键,那么就 a表的B字段跟b表的B字段对比, a表的C字段跟b表的C字段对比 。可以在数据库方面使用函数、 存储过程等。还有 两张表的数据可能超过千万条,求各位大神有没有好的建议。
这边只能悬赏100,,分数还可以追加的 展开
2个回答
展开全部
1: select * from table_b b where not exist (select 1 from table_a a where a.A = b.A)
2: select * from table_a a where not exist (select 1 from table_b b where a.A = b.A)
3: select * from table_a a where exist (select 1 from table_b b where a.A = b.A and a.B=b.B and a.C=b.C)
2: select * from table_a a where not exist (select 1 from table_b b where a.A = b.A)
3: select * from table_a a where exist (select 1 from table_b b where a.A = b.A and a.B=b.B and a.C=b.C)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询