Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

linking two tables (should be simple!!)

Status
Not open for further replies.

englishnewbie

Programmer
Sep 20, 2003
11
BE
meanwhile (and i'll probably post this as a new thread!):

i have two tables: company and people.

The link is the company field, which is text, a company name.

I've put these two tables together separately, importing the data.

I want to create a relationship between company field in one and company field in the other.
But, having done so, there seems to be no link.

I REALLY don't want to have to do these 500 entries manually, so what's wrong? 300 or so should match.....

thanks, neil
 
Your SQL needs a FROM clause like

FROM Company INNER JOIN People ON Company.Company = People.Company
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top