If I join only two of the three tables, I get results. There is a common set of results -- ProductID present in all three tables that should come up as a result. When I join the three tables together, I don't get any results. Can somebody help me?
Thanks in advance.
MrsBean
SELECT tblVehicle_Product.*, tblProduct.*, tblProdDetailLeafSprings.*
FROM (tblProduct INNER JOIN tblVehicle_Product ON tblProduct.ProductID = tblVehicle_Product.ProductID) INNER JOIN tblProdDetailLeafSprings ON tblProduct.ProductID = tblProdDetailLeafSprings.ProductID;
Thanks in advance.
MrsBean