Is it possible to join more than 2 tables in a query. I have the following query:
SELECT company.Com_Name, customers.C_Email
FROM customers LEFT JOIN company ON customers.Company_ID = company.Company_ID
WHERE (((company.Company_ID) In (537,5471)));
Now I need to add two more tables. I need to get country.cntry, and emp.employee
both of which have id's in the company table.
Is this possible in one query? I need it to be in one query because the results are diplayed on a bound form which is set to a query.
Thanks!
SELECT company.Com_Name, customers.C_Email
FROM customers LEFT JOIN company ON customers.Company_ID = company.Company_ID
WHERE (((company.Company_ID) In (537,5471)));
Now I need to add two more tables. I need to get country.cntry, and emp.employee
both of which have id's in the company table.
Is this possible in one query? I need it to be in one query because the results are diplayed on a bound form which is set to a query.
Thanks!