Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Master-Detail relations

Re: Master-Detail relations

From: DA Morgan <damorgan_at_exesolutions.com>
Date: Mon, 13 Jan 2003 09:37:23 -0800
Message-ID: <3E22F953.FBB0F530@exesolutions.com>


Stephanie Kollenz wrote:

> Hi,
> I have master-detail relations in forms. Can anybody tell me how I can write
> such relations in PL/SQL?
> thx
> Steffi

SELECT ...
FROM master_table m, child_table c
WHERE m.field_name = c.field_name (+);

It is called an outer join if you wish to research it at http://tahiti.oracle.com.

Daniel Morgan Received on Mon Jan 13 2003 - 11:37:23 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US