Created
August 29, 2022 11:10
-
-
Save kryhtin/db442f5e12b9c95704e63eb4a55d25cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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