Query Help

G

Guest

I have one query which contains names and addresses of all consultants for
each project.

I have a table which contains my firm's name and address.

I want to create a query which will result in my firm's name and address
shows up for every project.

It seems to me this is conceptually easy but I can't seem to get it right.
 
G

Guest

If the firm's table contain only one record that include the name and the
address, you can simply add it to the query that include the project table
with no link between them

Select Project.Id, Project.Name , Firm.Name, Firm.Address
From Project, Firm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top