Ok I am familiar with joining tables like this:
Select table1.name,
table1.address,
table2.productDesc,
table2.productPrice,
table3.shippingfrom
FROM table1,
table2,
table3
WHERE
table1.ID = table2.customerID AND
table1.ID = table3.customerID
That all makes perfect sense to me - BUT... how would I use the INNER JOIN feature to accomplish this same thing? It seems to get a little complicated when joining more than 2 tables.
Any help would be greatly appreciated.
Thanks!
Trope
Select table1.name,
table1.address,
table2.productDesc,
table2.productPrice,
table3.shippingfrom
FROM table1,
table2,
table3
WHERE
table1.ID = table2.customerID AND
table1.ID = table3.customerID
That all makes perfect sense to me - BUT... how would I use the INNER JOIN feature to accomplish this same thing? It seems to get a little complicated when joining more than 2 tables.
Any help would be greatly appreciated.
Thanks!
Trope