Many to many Table design

samirshah172

Registered User.
Local time
Today, 12:04
Joined
Apr 18, 2015
Messages
16
Hello Forum,

In table1, "tblCompany" I have stored All Customers, Suppliers, Service Provider, Transporter etc. Fields are, CompanyID, CompanyName, ...... etc.

In Table2, "tblSaudaBook" i am storing transaction by Fields, S_Num, S_Date,
SupplierID(From tbl 1), CustomerID(From tbl 1), TransporterID(From tbl 1).

I am getting problem while running query of table2 where i want all name from table 1.

Please help me, What mistake i am making.

Regards
Samir
 
You would add the company table three times. Join each of the instances to one of the three fields. Access will alias the tables like tblCompany_1, which you can change to something more descriptive.
 
Thanks, Work perfect.
 

Users who are viewing this thread

Back
Top Bottom