Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

- - You are to develop SQL statements for each task listed. - - You should type your SQL statements under each task. / *

--You are to develop SQL statements for each task listed.
--You should type your SQL statements under each task.
/* Submit your .sql file named with your last name, first name and assignment # (e.g., SuneelPratimaAssignment09.sql).
Submit your file to the instructor through the course site.
Class standard: All KEYWORDS such as SELECT, FROM, WHERE, INNER JOIN and so on must be in all capital letters and on separate lines. */
Use AdventureWorksDW2012
--Note 1: When the task does not specify sort order, it is your responsibility to order the information
-- so that is easy to interpret.
--Note 2: The questions are numbered. 1.a.,1.b.,2.a.,2.b., etc to remind you of the steps in developing and
-- testing your queries/subqueries. The first steps will not require subqueries unless specified. The last step in every sequence
-- will require a subquery, regardless of whether the result can be created using another method.
--1.a. List the average sales amount quota for employees at AdventureWorks. Use AVG. (2 points)
--587202.4539
--1.b. List the average sales amount quota for employees at AdventureWorks for 2008.(2 points)
--541470.5882
--1.c. List the name, title, and hire date for AdventureWorks employees
-- whose sales quota for 2008 is higher than the average for all employees for 2008.
-- Be sure to use an appropriate sort. (4 points)
--16 Rows
-- Hint - Might want to use WHERE clause Twice!!! Once for inner query and once for outer query.
-- USE UNCorrelated Subquery
--2.a. List the average LIST PRICE of a bike sold by AdventureWorks. (1 point)
--1 row
--2.b. List all products in the Bikes category that have a list price higher than
-- the average list price of a bike. Show product alternate key, product name,
-- and list price in the results set. Order the information so it is easy to understand. (4 points)
--50 rows
-- UnCorrelated subquery
--3.a. Find the average yearly income all customers in the customer table. (2 points)
--57,305.7779
--3.b. Find all males in the customers table with an income less than or the same as the average
-- income of all customers. List last name, a comma and space, and first name in one column and yearly income. (4 points)
--4404 rows
-- UnCorrelated subquery
--4.a. List the product name and list price for the bike named Road-150 Red, 48(2 points)
--3,578.27
--4.b. List the product name and price for each product that has a price greater than or
-- equal to that of the Road-150 Red, 48. Be sure you are using the subquery not an actual value. (5 points)
--5 rows
-- USE UnCorrelated Subquery
--5.a. List the names of resellers and the product names of products they sold.
-- Elimate duplicate rows. Use an appropriate sort. (3 points)
--20463 rows
--5.b. List only one time the names of all resellers who sold a cable lock.
-- Use the IN predicate and a subquery to accomplish the task. Use an appropriate sort. (5 points)
--93 rows
-- USE UnCorrelated Subquery
--6.a. Find the unique customers from the Survey Response fact table. (2 points)
--1656 ROWS
--7.a. Find the number of times the CustomerKey appears in the Internet Sales Fact table. (2 points)
-- Use COUNT()
--60,398
--8. List all resellers whose annual sales exceed the average annual sales for resellers whose Business Type is "Specialty Bike Shop". Show Business type, Reseller Name, and annual sales. Use appropriate subqueries. (6 points)
--396 Rows
-- Use Uncorrelated sub query
--9. Subqueries can be nested 32 deep. Try your hand at nesting a subquery within a subquery. (6 points)
-- State the purpose of the query and then try.
Add a comment to help your tutor better understand your question

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

=+50. Now deduce Theorem 3.3 from part (a).

Answered: 1 week ago