Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

MYSQL Chapter 6 How to code summary queries Exercises 1. Write a SELECT statemen

ID: 3589868 • Letter: M

Question



MYSQL

Chapter 6 How to code summary queries Exercises 1. Write a SELECT statement that returns these columns The count of the number of orders in the Orders table The sum of the tax_ amount columns in the Orders table Write a SELECT statement that returns one row for each category that has products with these columns 2. The category_name column from the Categories table The count of the products in the Products table The list price of the most expensive product in the Products table Sort the result set so the category with the most products appears first. Write a SELECT statement that returns one row for each customer that has orders with these columns 3. The email_address column from the Customers table The sum of the item price in the Order Items table multiplied by the quantity in the Order_Items table The sum of the discount amount column in the Order _Items table multiplied by the quantity in the Order Items table Sort the result set in descending sequence by the item price total for each customer. Write a SELECT statement that returns one row for each customer that has orders with these columns 4. The email_ address from the Customers table A count of the number of orders The total amount for each order (Hint: First, subtract the discount amount from the price. Then, multiply by the quantity.) Return only those rows where the customer has more than 1 order Sort the result set in descending sequence by the sum of the line item amounts. Modify the solution to exercise 4 so it only counts and totals line items that have an item_price value 5. that's greater than 400.

Explanation / Answer

1)Answer:

SELECT COUNT(OrderID) as OrderCount,
SUM(TaxAmount) AS TaxTotal
FROM Orders

2)Answer:

SELECT CategoryName, COUNT(*) AS ProductCount,
MAX(ListPrice) AS MostExpensiveProduct
FROM Categories c JOIN Products p
ON c.CategoryID = p.CategoryID
GROUP BY CategoryName
ORDER BY ProductCount DESC

3)Answer:

SELECT EmailAddress, SUM(ItemPrice * Quantity) AS ItemPriceTotal,
SUM(DiscountAmount * Quantity) AS DiscountAmountTotal
FROM Customers c
JOIN Orders o ON c.CustomerID = o.CustomerID
JOIN OrderItems oi ON o.OrderID = oi.OrderID
GROUP BY EmailAddress
ORDER BY ItemPriceTotal DESC

4)Answer:

SELECT EmailAddress, COUNT(o.OrderID) AS OrderCount,
SUM((ItemPrice - DiscountAmount) * Quantity) AS OrderTotal
FROM Customers c
JOIN Orders o ON c.CustomerID = o.CustomerID
JOIN OrderItems oi ON o.OrderID = oi.OrderID
GROUP BY EmailAddress
HAVING COUNT(o.OrderID) > 1
ORDER BY OrderTotal DESC

5)Answer:

SELECT EmailAddress, COUNT(o.OrderID) AS OrderCount,
SUM((ItemPrice - DiscountAmount) * Quantity) AS OrderTotal
FROM Customers c
JOIN Orders o ON c.CustomerID = o.CustomerID
JOIN OrderItems oi ON o.OrderID = oi.OrderID
WHERE ItemPrice > 400
GROUP BY EmailAddress
HAVING COUNT(o.OrderID) > 1
ORDER BY OrderTotal DESC;

6)Answer:

SELECT ProductName, SUM((ItemPrice - DiscountAmount) * Quantity) AS ProductTotal
FROM Products p
JOIN OrderItems oi ON p.ProductID = oi.ProductID
GROUP BY ProductName WITH ROLLUP

7)Answer:

SELECT EmailAddress,
COUNT(DISTINCT oi.ProductID) AS NumberOfProducts
FROM Customers c
JOIN Orders o ON c.CustomerID = o.CustomerID
JOIN OrderItems oi ON o.OrderID = oi.OrderID
GROUP BY EmailAddress
HAVING COUNT(DISTINCT oi.ProductID) > 1
ORDER BY EmailAddress

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote