Advertisement
yatahaze

PavloSheichenko

Feb 28th, 2023
686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.17 KB | None | 0 0
  1. SELECT p.ProductName, Quantity, OrderID, c.CategoryName
  2. FROM OrderDetails o
  3.   JOIN Products p ON o.ProductID = p.ProductID
  4.   JOIN Categories c ON p.CategoryID = c.CategoryID
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement