Advertisement
Xomic

TestTaskMindbox

Dec 24th, 2024
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.20 KB | Software | 0 0
  1. SELECT
  2.     p.Name,
  3.     c.Name
  4. FROM
  5.     Products p
  6. LEFT JOIN
  7.     ProductCategories pc ON p.Id = pc.ProductId
  8. LEFT JOIN
  9.     Categories c ON pc.CategoryId = c.Id
  10. ORDER BY
  11.     p.Name, c.Name;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement