Skip to content

Instantly share code, notes, and snippets.

@kryhtin
Created August 29, 2022 11:10
Show Gist options
  • Save kryhtin/db442f5e12b9c95704e63eb4a55d25cf to your computer and use it in GitHub Desktop.
Save kryhtin/db442f5e12b9c95704e63eb4a55d25cf to your computer and use it in GitHub Desktop.
SELECT Products.Name, Categories.Name
FROM Products
LEFT JOIN ProductCategories ON Products.Id = ProductCategories.ProductId
LEFT JOIN Categories ON ProductCategories.CategoryId = Categories.Id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment