Facebook
From Unreliable Iguana, 4 Years ago, written in Plain Text.
This paste is a reply to Untitled from Harmless Cassowary - go back
Embed
Viewing differences between Untitled and Re: Untitled
SELECT od.OrderID, ProductID, CompanyName
FROM Orders AS o
JOIN order_details AS od
ON o.OrderID=od.OrderID
JOIN Shippers AS s
ON o.ShipVia=s.ShipperID
JOIN Products AS p
ON od.ProductID=p.ProductID;