programming-examples/sql/View
2019-11-18 14:05:53 +01:00
..
1. Write a query to create a view for those salesmen belongs to the city New York.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
2. Write a query to create a view for all salesmen with columns salesman_id, name and city.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
3. Write a query to find the salesmen of the city New York who achieved the commission more than 13%.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
4.Write a query to create a view to getting a count of how many customers we have at each level of a grade.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
5. Write a query to create a view to keeping track the number of customers ordering, number of salesmen attached.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
6. Write a query to create a view that shows for each order the salesman and customer by name.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
7. Write a query to create a view that finds the salesman who has the customer with the highest order of a day.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
8. Write a query to create a view that finds the salesman who has the customer with the highest order at least 3 times on a day.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
9. Write a query to create a view that shows all of the customers who have the highest grade.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
10. Write a query to create a view that shows the number of the salesman in each city.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
11. Write a query to create a view that shows the average and total orders for each salesman after his or her name. (Assume all names are unique).sql Adding SQL query language 2019-11-18 14:05:53 +01:00
11. Write a query to create a view that shows the average and total orders for each salesman after his or her name.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
12. Write a query to create a view that shows each salesman with more than one customers.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
13. Write a query to create a view that shows all matches of customers with salesman.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
14. Write a query to create a view that shows the number of orders in each day.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
15. Write a query to create a view that finds the salesmen who issued orders on October 10th, 2012.sql Adding SQL query language 2019-11-18 14:05:53 +01:00
16. Write a query to create a view that find the salesmen who issued orders on either August 17th, 2012 or October 10th, 2012.sql Adding SQL query language 2019-11-18 14:05:53 +01:00