Question
The president of the company wants a list of all orders ever taken. He wants to see the customer name, the last name of the
- The president of the company wants a list of all orders ever taken. He wants to see the customer name, the last name of the employee who took the order, the shipper who shipped the order, the product that was ordered, the quantity that was ordered, and the date on which the order was placed. [Hint: You will need to join the following tables: Customers, Employees, Shippers, Orders, OrderDetails, Products, and to get all of the necessary information.]
Query | Number of records returned |
|
|
[Source: w3schools.com] [Database Tables: Customers, Categories, Employees, OrderDetails, Orders, Products, Shippers, Suppliers]
Attempted sol'n:
SELECT ShipperName, CustomerName, Employees.LastName FROM Shippers, Customers, Employees JOIN OrderDetails ON OrderDetails.ID = Orders.OrderDetailID JOIN Customers ON Customers.customerID = Orders.customerID JOIN Employees ON Employees.employeeID = Orders.employeeID JOIN Shippers ON Shippers.ID = OrderDetails.shipperID JOIN Products ON OrderDetails.ProductID = Products.ID;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started