🗄️ Notes, queries, and exercises from my SQL learning journey — from basics to advanced joins
Stars
0
Forks
0
Watchers
0
Open Issues
0
Overall repository health assessment
No language data available
No package.json found
This might not be a Node.js project
22
commits
Challenge 2: Find all 'Electronics' or 'Accessories' that are in stock and have a stock quantity greater than 100. Select only their names and stock quantities.
afd1219View on GitHubChallenge 1: Find all products in the 'Accessories' category that cost more than , and list them with the most expensive ones first.
81f87ddView on GitHubFind all products whose name contains the word 'Mouse' and Find all products that are NOT in the 'Electronics' category.
e0cf36fView on GitHubFind all products that are in the 'Accessories' category using the IN keyword.
2d544b7View on GitHubFind all products that are in the 'Home Goods' category OR the 'Furniture' category.
5e6f3ccView on GitHubFind all products that are in the 'Electronics' category AND have a price less than .
ff7062aView on GitHubFind the name and price of all products that cost more than .
afb872eView on GitHubFind all products that are not in stock (in_stock is FALSE).
ef0b43dView on GitHub