oracle 查询有相同字段的两个表中差异的内容

2024-11-01 10:25:37
推荐回答(1个)
回答(1):

select * from 表1 a, 表2d b
where a.tt = b.tt(+)
union
select * from 表1 a, 表2 b
where a.tt(+) = b.tt ;