当前位置: 代码迷 >> Oracle管理 >> 查询oracle两表中的雷同数据
  详细解决方案

查询oracle两表中的雷同数据

热度:97   发布时间:2016-04-24 04:12:45.0
查询oracle两表中的相同数据
有表a和表b 字段名相同,现想查询a.fly!=‘财’ 和b.fly=‘财’中a.qh=b.qh的数据
------解决思路----------------------
要这个结果?
select * from a,b
where a.fly<>'财'  and b.fly='财' and a.qh=b.qh

还是这个?
select qh from a where a.fly<>'财' 
intersect
select qh from b where b.fly='财'
 
  相关解决方案