Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

--* BUSIT 103 assignment #6 DUE DATE : Consult course calendar --You are to develop SQL statements for each task listed. You should type your

--* BUSIT 103 assignment #6 DUE DATE : Consult course calendar --You are to develop SQL statements for each task listed. You should type your SQL statements under --each task. You are required to use inner joins to solve each problem. Even if you know another method --that will produce the result, this module is practice in inner joins.

--NOTE: We are now using a different database. USE AdventureWorks2012;

/* Reminder: You are required to use the INNER JOIN syntax to solve each problem. INNER JOIN is ANSI syntax. It is generally considered more readable, especially when joining many tables. Even if you have prior experience with joins, you will still use the INNER JOIN syntax and refrain from using any OUTER or FULL joins for SQL Assignments 6 and 7. */

--1.a. List any products that have product reviews. Show product name, product ID, and comments. -- Sort alphabetically on the product name. Dont over complicate this. A correctly written -- inner join will return only those products that have product reviews; i.e., matching values in -- the linking field.

--1.b. Copy/paste 1.a. to 1.b. then modify 1.b. to show only records in which the word 'heavy' is -- found in the Comments field. Show product ID, product name, and comments. Sort on ProductID.

--2.a. List product models with products. Show the product model ID, model name, product ID, -- product name, standard cost, and class. Round all money values to exactly two decimal places. -- Be sure to give any derived fields an alias. order by standard cost from highest to lowest. -- Hint: You know you need to use the Product table. Now look for a related table that contains -- the information about the product model and inner join it to Product on the linking field.

--2.b. Copy/paste 2.a. to 2.b. then modify 2.b. to list only products with a value in the -- class field. Do this using NULL appropriately in the where clause. Hint: Remember -- that nothing is ever equal (on not equal) to NULL; it either is or it isn't NULL.

--2.c. Copy/paste 2.b. to 2.c. then modify 2.c. to list only products that contain a value in -- the class field and contain 'fork' or 'front' in the product model name. Be sure that NULL -- does not appear in the Class field by using parentheses appropriately.

--3.a. List Product categories, their subcategories and their products. Show the category name, -- subcategory name, product ID, and product name, in this order. Sort in alphabetical order on --- category name, subcategory name, and product name, in this order. Give each Name field a -- descriptive alias. For example, the Name field in the Product table will have the alias ProductName.

--3.b. Copy/paste 3.a. to 3.b. then modify 3.b. to list only Products in product category 1. -- Show the category name, subcategory name, product ID, and product name, in this order. Sort in -- alphabetical order on category name, subcategory name, and product name. -- Hint: Add product category id field to select clause, make sure your results are correct, then -- remove or comment out the field. Something to consider: Look at the data in the ProductName field. -- Could we find bikes by searching for 'bike' in the ProductName field?

--3.c. Copy/paste 3.b. to 3.c. then modify 3.c. to list Products in product category 3. Make no other changes -- to the statement. Consider what kinds of products are in category 3.

--4.a. List Product models, the categories, the subcategories, and the products. Show the model name, -- category name, subcategory name, product ID, and product name in this order. Give each Name field a -- descriptive alias. For example, the Name field in the ProductModel table will have the alias ModelName. -- Sort in alphabetical order by model name. --

--4.b. Copy/paste 4.a. to 4.b. then modify 4.b. to list those products in model ID 23 and -- are the color black. Modify the sort to order only on Product ID. -- Hint: Add the product model id field to the select clause to -- check your results and then remove or comment it out.

--5. List all sales for clothing that were ordered during 2007. Show sales order id, product ID, -- product name, order quantity, and line total for each line item sale. Make certain you are -- retrieving only clothing. There are multiple ways to find clothing. Show the results -- by sales order id and product name.

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

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

BN 0 6 " : APT : "

Answered: 1 week ago