2. Write a SELECT statement that returns one row for each category that has prod
ID: 638851 • Letter: 2
Question
2. Write a SELECT statement that returns one row for each category that has products with these columns: The CategoryName 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.
3. Write a SELECT statement that returns one row for each customer that has orders with these columns: The EmailAddress column from the Customers table The sum of the item price in the OrderItems table multiplied by the quantity in the OrderItems table The sum of the discount amount column in the OrderItems table multiplied by the quantiy in the OrderItems table Sort the result set in descending sequence by the item price total for each customer.
4. Write a SELECT statement that returns one row for each customer that has orders with these columns: The EmailAddress column from the Customers table A count of the number of order items 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.
5. Modify the solution to exercise 4 so it only counts and totals line items that have an ItemPrice value that
Explanation / Answer
2)
3)
6)
7)
7th one i am not sure..hope it helps
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.