On 6 Oct 2003 at 10:26, Louise Cofield wrote:
> I am attempting to select fields Location and Item_Num from table A
> where A.Location = B.Location,
>
> AND
>
> select Item_Description from table C, where A.Item_Num = C.Item_Num.
Try:
select Location, Item_Num
from table A, B, C
where A.Loca
That was way too simple -- thank you!
-Original Message-
From: Bruno Wolff III [mailto:[EMAIL PROTECTED]
Sent: Monday, October 06, 2003 10:38 AM
To: Louise Cofield
Cc: [EMAIL PROTECTED]
Subject: Re: [SQL] Multiple table join
On Mon, Oct 06, 2003 at 10:26:59 -0600,
Louise Cofield
On Mon, Oct 06, 2003 at 10:26:59 -0600,
Louise Cofield <[EMAIL PROTECTED]> wrote:
>
> I am attempting to select fields Location and Item_Num from table A
> where A.Location = B.Location,
>
> AND
>
> select Item_Description from table C, where A.Item_Num = C.Item_Num.
Just list all three tab