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

show all data

Status
Not open for further replies.

dashusa

Programmer
Mar 27, 2006
46
US
hello i am joining to tables and it looks like this:

SELECT Table1.Check, paths.check, paths.Field1
FROM Table1 INNER JOIN paths ON Query11.Check =Paths.check;

problem is that i want to show all the data in the tables aswell even if the dont match up..
is this posssible.
I have more records in the Table 1 colum.
Thak you D
 
Sorry it should have been:

SELECT Table1.Check, paths.check, paths.Field1
FROM Table1 INNER JOIN paths ON Table1.Check =Paths.check

 
SELECT Table1.Check, paths.check, paths.Field1
FROM Table1 LEFT JOIN paths ON Table1.Check =Paths.check
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top