I have one master table and a detail table. How can I get all the rows in the detail table for a perticular key in the master table int o a single row. For Eg
select a.field1,a.field2,b.field1,b.filed2
from master a,detail b
where a.key(+)=b.key
More over if u have enforced the foreign key relation from detail to master(ie Master deatils relation) thsi kind of scenarion wont be happen but vice versa..
Bookmarks