当前位置: 代码迷 >> Oracle开发 >> oracle双表合龙查询
  详细解决方案

oracle双表合龙查询

热度:10   发布时间:2016-04-24 07:02:26.0
oracle双表合并查询
有三张表A、B、C,其中B、C的外键'aid'是A的主键。但是A中的记录不会同时出现在B、C中。现有两条语句:
select b_val from B where aid in (select id from A where ...);
select c_val from C where aid in (select id from A where ...);
请高手指点一下我该怎么把这两句合并成一句,谢谢!!!
Oracle select 合并

------解决方案--------------------
select * from b left join c on b.aid=c.aid where b.aid in (select id from A where ...) 
------解决方案--------------------
select b_val
  from (select b_val, aid
          from B
        union all
        select c_val, aid from c) t
 where t.aid in (select id from A where .. .)
  相关解决方案