Can anybody see what is wrong with this simple query? The error seems to be in the Left Join
Thx L
Age is a consequence of experience
Code:
SELECT p.[P_ItemID] AS ProductID, i.[Name], PQ.[QuantityOnStock]
FROM [Products] p
INNER JOIN [Items] i ON i.[I_ItemID] = p.[P_ItemID]
LEFT JOIN ProductQuantitys PQ ON PQ.[PQ_ItemID] = p.[P_ItemID]
Thx L
Age is a consequence of experience