select a,b,c
from
mytab1 a full outer join
(select e,f,g
from s,b
where
s.w=b.w)m
on a.col1=m.e
mytab1 l left out join
(select ...
from ..
where..)k
on l.a=k.a
can I do this? This script is working fine if I am using union all. But I want to use one sql query & full outer join & left outer join.
I have tried this but getting more rows.
select a,b,c
from
mytab1 a full outer join
(select e,f,g
from s,b
where
s.w=b.w)m
on a.col1=m.e
left out join
(select ...
from ..
where..)k
on a.a=k.a
I would appreciiate your help.
I am using Oracle 10.
from
mytab1 a full outer join
(select e,f,g
from s,b
where
s.w=b.w)m
on a.col1=m.e
mytab1 l left out join
(select ...
from ..
where..)k
on l.a=k.a
can I do this? This script is working fine if I am using union all. But I want to use one sql query & full outer join & left outer join.
I have tried this but getting more rows.
select a,b,c
from
mytab1 a full outer join
(select e,f,g
from s,b
where
s.w=b.w)m
on a.col1=m.e
left out join
(select ...
from ..
where..)k
on a.a=k.a
I would appreciiate your help.
I am using Oracle 10.