1. Write a SELECT statement that returns these columns: The count of the number of orders in the Orders table The sum of the TaxAmount columns in the Orders table 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 quantiy 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 orders The total amount for those orders (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's greater than 400.
1. Write a SELECT statement that returns these columns: The count of the number of orders in the Orders table The sum of the TaxAmount columns in the Orders table 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 quantiy 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 orders The total amount for those orders (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's greater than 400.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
Having trouble with my SQL statements returning errors for these. Guidance would be awesome.

Transcribed Image Text:1. Write a SELECT statement that returns these columns:
The count of the number of orders in the Orders table
The sum of the TaxAmount columns in the Orders table
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 quantiy 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 orders
The total amount for those orders (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's greater than 400.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps

Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education