Hi all, having problems with my joins again
.
I cannot fathom where the brackets go when I have three joins, any help much appreciated.
Thx T
Age is a consequence of experience
I cannot fathom where the brackets go when I have three joins, any help much appreciated.
Code:
SELECT s.S_SupplierID AS SupplierID, blah, blah
FROM Suppliers s
INNER JOIN SupplierProducts sp ON SP_SupplierID = S_SupplierID
INNER JOIN Products p ON p.P_ItemID = sp.SP_ItemID
INNER JOIN Items i on p.P_ItemID = i.I_ItemID
Thx T
Age is a consequence of experience