Link to home
Start Free TrialLog in
Avatar of Jimbo99999
Jimbo99999Flag for United States of America

asked on

MS Access JOIN Query

Good Day Experts

Perhaps you all can assist me as my MS Access query building experience is rather light.  
I have three tables that I am working with...InvoiceHeader, InvoiceDetail and Address.
I am interested in getting all of the data fron the InvoiceDetail table for each InvoiceHeader record.  InvoiceNumber is the common field between the two tables.  In the InvoiceHeader and Address tables, I have a field names StoreNumber.  I want to get the address information from the Address table.  

Conceptually this seems doable:
1)Get InvoiceDetail records based on InvoiceHeader.InvoiceNumber
2)Get Address records based on InvoiceHeader.StoreNumber

I do ok when not trying to do the Address table.  But, I am not sure how to do it to get the address  table data.

Any helpful hints or insight is appreciated,
jimbo99999
ASKER CERTIFIED SOLUTION
Avatar of Sharath S
Sharath S
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jimbo99999

ASKER

Oh...I did not know of that technique with the inner join in the inner join.  Thanks, I will try it in the morning.

jimbo99999