On Mon, Oct 06, 2003 at 10:26:59 -0600,
Louise Cofield <lcofield(at)box-works(dot)com> 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 tables in the from item list and include both
conditions in the where clause (connected by and).
If there is more to your problem than this, you should supply more details.