Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm facing issue with joins for example:
select * from customers c,categories CA,products p,network n,pin_server pn,credit_transfer ch
where c.cust_id=p.pro_id
and c.dest_id=CA.cat_id(+)
and ch.config_id = pn.config_id
and pn.network_id = n.network_id(+)
In this case which component should be considered as main..
Thanks in advance
I want do both left outer join and inner join
as i mentioned in above query
and output columns come from customers c should I consider Customer C component as main...
regards,
Sumanth