-
Notifications
You must be signed in to change notification settings - Fork 11
MySQL Tutorial
arahuja edited this page Aug 5, 2013
·
6 revisions
##W3 School
We'll be playing with the live database available here:
http://www.w3schools.com/sql/trysql.asp?filename=trysql_select_all
##Questions
Let's walk through a few examples:
- Retrieve all Customers from Madrid
SELECT * FROM Customers WHERE City='Madrid'
- What is the most common city for customers?
SELECT City, COUNT(*) FROM Customers GROUP BY City
- What category has the most products?
SELECT CategoryName, COUNT(*) FROM Categories JOIN Products on (Categories.CategoryID = Products.CategoryID) GROUP BY CategoryName
##On your own:
- What customers are from the UK
- What is the name of the customer who has the most orders?
- What supplier has the highest average product price?
- What category has the most orders?
-
- What employee made the most sales (by number of sales)?
** 6. What employee made the most sales (by value of sales)?
** 7. What Employees have BS degrees? (Hint: Look at LIKE operator)
** 8. What supplier has the highest average product price assuming they have at least 2 products (Hint: Look at the HAVING operator)