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!

Help With Inner Join

Status
Not open for further replies.

ctau

IS-IT--Management
Feb 8, 2000
34
0
0
US
I need help with the syntax to join to tables together using a Select statement. Here is what I have been trying so far

SQL_Statement = "SELECT * FROM return_header Inner JOIN return_line ON return_header.return_number = return_line.return_number"
 
I finally go this working. Here is what I did incase it helps someone.



SQL_Statement = "SELECT * FROM return_header RH, return_line RL where RH.return_number = RL.return_number"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top