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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

INNER JOIN tables with Access 2000 1

Status
Not open for further replies.

numbered

Technical User
Jun 10, 2002
54
0
0
CA
I can't get my query to work :(

SELECT
t1.first_name, t2.description
FROM
table_1 as t1
INNER JOIN
table_2 as t2
ON
t1.type = t2.id

Any ideas why it's not working...does INNER JOIN work with access?
 
Yes,jet sql supports inner join. What's the problem? Error message? Incorrect result?
 
"Type mismatch in expression" is my error.
 
I didn't know that.

Thank you very much!! That was exactly what my problem was.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top