Skip to content

Instantly share code, notes, and snippets.

@alimoghanni
Created December 19, 2021 17:39
Show Gist options
  • Select an option

  • Save alimoghanni/79de18b74d0eee1084458fe58b781d9f to your computer and use it in GitHub Desktop.

Select an option

Save alimoghanni/79de18b74d0eee1084458fe58b781d9f to your computer and use it in GitHub Desktop.
SQL
SELECT items.name AS Item, sellers.name AS Seller
FROM items
INNER JOIN sellers
ON items.sellerId = sellers.id
WHERE sellers.rating > 4;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment