Write sql select statements

Assignment Help Other Subject
Reference no: EM132419820

HS2021- Database Design and Use - Holmes Institute

Database Design and Use Assignment

Section 1 -

A database analyst has developed the following ER Diagram (attached).

Create a script file named ASS1_SQL.TXT.

Add your Student ID and Student name the first lines of the script file.

1.1. Relationships

Write the English sentences that best describe the ERD above.

Place the text in the specified location in the file: ASS1_SQL.TXT

 Prefix each line with comment symbols -- (two hyphens)

E.g.: --ONE Employee MUST belong to ONE Branch

--ONE Branch MAY employ to MANY Employees

--ONE Branch MUST belong to ONE Organisation

-- ONE Organisation MAY employ to MANY Branches

1.2.Drop Tables

Write SQL DROP statements that will drop all the tables.

1.3. Create Tables

Write SQL CREATE TABLE statements to create all the tables.

Note:

  • All tables must have primary keys.
  • All tables must have appropriate foreign key constraints.
  • Each foreign key column must have identical column name, data type and size of the primary key that it refers to.
  • Add any NOT NULL constraints as dictated by the ERD.
  • The following columns data types and sizes must be used.

custid, prodid, ordid, spid

number(4)

cfirstname, csurname, billingaddress, deliveryaddress, prodname, spfirstname, spsurname

varchar(30)

cgender, spgender

varchar(1)

qtysold, qtydelivered

number(4)

saleprice, currentprice

number(6,2)

The following constraints must be used

Type Details

 

Check

Gender values must be M or F

Check

Prices must be in the range 0 to 5000

Check

Quantities must be in the range 0 - 99

Foreign Key

All foreign keys must have named constraints

1.4. Insert Customers

Write SQL INSERT statements that add the data shown to the CUSTOMER table.

1.5. Check constraint error

Write SQL INSERT statements that attempt to add the data shown to the CUSTOMER table.

This statement must fail due to check constraints.

1.6. Insert Products

Write SQL INSERT statements that add the data shown to the PRODUCT table.

1.7. Check constraint error

Write SQL INSERT statements that attempt to add the data shown to the PRODUCT table. This statement must fail due to check constraints.

1.8. Insert Salespersons

Write SQL INSERT statements that add the data shown to the SALESPERSON table.

1.9. Insert Shop Orders

Write SQL INSERT statements that add the data shown to the SHOPORDER table.

1.10. FK Error

Write these SQL INSERT statements that attempts to add the data shown to the SHOPORDER table. These statements must fail. If they don't fail, there is a problem with your Foreign Key constraint clause in your Create Table statement. Add these statements to the appropriate location within the script file.

1.11. Insert Oder Lines

Write SQL INSERT statements that add the data shown to the ORDERLINE table.

1.12. FK errors

Write these SQL INSERT statements that attempt to add the data shown to the ORDERLINE table. These statements must fail. If they don't fail, there is a problem with your Foreign Key constraint clause in your Create Table statement.

1.13. List rows in all Tables

Write five SQL statements that will list all of the rows in all tables in ascending primary key sequence. Add these statements to the appropriate location within the script file.

Section 2 -

Add each statement to the appropriate location within the script file.

2.1.1 Count the total number of orders in the SHOPORDER table.

2.1.2 Count the total number of orders that have been made by female customers.

2.1.3 Count the total number of orders that have been made by each gender of customer.

2.1.4 List the order id, customer id, firstname & surname for all shop orders where the customer is female. List in ascending customer id / order id sequence

2.1.5 List order id, customer id, firstname & surname, product id and quantity sold for all rows in the ORDERLINE table. List in ascending customer id / order id / product id sequence.

Section 3 -

The database analyst has modified the existing ER Diagram (attached):

Each product is assigned to one or more managers.

It is the responsibility of a manager to perform a quality check once a week on each product that they have been assigned to.

For each quality check performed by a manager, the week no and score (a value between 1 and 3) is recorded.

3.1.Drop Tables

Write SQL DROP statements that will drop all the additional tables. Add these statements to section 1.2 of the script file.

3.2. Create Tables

Write SQL CREATE TABLE statements to create all additional the tables. Add these statements to the appropriate location within the script file.

Note: All tables must have primary keys. All tables must have appropriate foreign key constraints. Each foreign key column must have identical column name, data type and size of the primary key that it refers to. Add any NOT NULL constraints as dictated by the ERD. Choose your own appropriate column data types and sizes.

3.3. Insert Managers

Write SQL INSERT statements that add the data shown to the MANAGER table.

3.4. Insert Allocations

Write SQL INSERT statements for the ALLOCATION table to assign products to managers.

3.5. PK Error

Write these SQL INSERT statements that attempt to add the data shown to the ALLOCATION table. These statements must fail. If they don't fail, there is a problem with your Primary Key constraint clause in your Create Table statement. Add these statements to the appropriate location within the script file.

3.6. Insert Quality Checks

Write SQL INSERT statements for the QUALITYCHECK table to record scores awarded by managers. Add these statements to the appropriate location within the script file.

3.7. PK Error

Write these SQL INSERT statements that attempt to add the data shown to the QUALITYCHECK table. These statements must fail. If they don't fail, there is a problem with your Primary Key constraint clause in your Create Table statement. Add these statements to the appropriate location within the script file.

3.8. FK Error

Write these SQL INSERT statements that attempt to add the data shown to the QUALITYCHECK table. These statements must fail. If they don't fail, there is a problem with your Foreign Key constraint clause in your Create Table statement. Add these statements to the appropriate location within the script file.

3.9. List all rows in additional Tables

Write three SQL statements that will list all of the rows from all additional tables in ascending primary key sequence. Add these statements to the appropriate location within the script file.

Section 4 -

Write these SQL SELECT statements.

Add each statement to the appropriate location within the script file.

4.1. List the order id, product id, product name, current price, sale price and the price difference for all products that appear in the ORDERLINE table. Only list rows where the price difference is greater than 10% of the product's current selling price. List in ascending price difference sequence.

4.2. Use a Union clause to list the names of all customers, salespersons and managers in surname / firstname sequence. Show the role of each person.

4.3. Use a UNION clause to list each order id and address. The list must be in ascending Order ID sequence. If the Shop Order delivery address is NULL, then you must display the customer's billing address instead of the delivery address.

4.4. List the order id, customer id, firstname & surname, product id & name for all rows in the ORDERLINE table. List in ascending customer id / order id / product id sequence.

4.5. List the product id, name and current price of all products that have a selling price greater the average current price of all products. List in ascending current price sequence.

Section 5 -

5.1. For each row in the SHOPORDER table, show the customer id & surname and order id. Ensure that every customer is the CUSTOMER table is listed - even if they have not created any shop orders. List in ascending customer id / order id sequence.

5.2. Count the number of shop orders for each customer. Ensure that every customer is the CUSTOMER table is listed - even if they have not created any shop orders. List in ascending customer id.

5.3. List order id, customer id, firstname & surname, product id and quantity sold for all rows in the ORDERLINE table. List in ascending customer id / order id / product id sequence.

5.4. List the product id, product name and total quantity sold for all products that appear in the ORDERLINE table. List in ascending total sequence / product id.

5.5. Same as above, but only show products where total sales are in the range 2 to 10 (inclusive)

5.6. Same as above, but only show products where total sales are greater than 1 that contain the word 'Lamp' or 'Table' in the product name.

5.7. List the average score in the QUALITY CHECK table for each product. Only show results if the average score is greater than or equal to 2.0. List an ascending average score sequence.

5.8. List the total orders for products with an average quality check score greater than or equal to 2.0. Do not 'hard code' product ids 33 and 31 in your query as obviously data values will change over time.

Attachment:- Database Design and Use Assignment File.rar

Reference no: EM132419820

Questions Cloud

Record the journal entry for the retirement of the bonds : Two years ago the city of Ithaca issued $1,600,000 of bonds for $1,650,000 to complete several construction projects in Fall Creek.
Journal entry to record the issuance of the bonds : A Salon issued $500,000, 6%, 5-year bonds on 1/1/18. The bonds pay interest every December 31.
Partial statement of financial position : LIsten, I need help doing a partial statement of financial position to capture the above transactions occurring during 2012. KIA uses the deferral method
Compute the price of the bond : The Florida Investment fund buys 52 bonds of the Gator Corporation through a broker. The bonds pay 7 percent annual interest. The yield to maturity
Write sql select statements : List the product id, name and current price of all products that have a selling price greater the average current price of all products. List in ascending
What is the price of the bonds : The bonds mature in 14 years, have a face value of $1,000, and a yield to maturity of 7%. What is the price of the bonds? Round your answer to the nearest cent.
The value of fair treatment assignment : The Value of Fair Treatment Assignment help and solutions:- Explain the employment-at-will (EAW) doctrine and ALL the exceptions to the doctrine.
Write sql insert statements : Write SQL INSERT statements that attempt to add the data shown to the PRODUCT table. This statement must fail due to check constraints
Explain the impact of errors for 2021 profit : Errors were made in each year as follows: in 2020, ending inventory was overstated by $11,000 while in 2021, ending inventory was understated by $6,900

Reviews

Write a Review

Other Subject Questions & Answers

  Describe ethical issues involved in supervisor-counselor

Describe the ethical issues involved in the supervisor-counselor relationship. How is this relationship similar to the counselor-client relationship? How is it different

  Copmare david canters radex model and the macdonald triad

Compare and contrast David Canter's Radex Model and The MacDonald Triad.Based on your knowledge, which model would be beneficial to law enforcement?

  Models of care for provision of nursing services in canada

Identify the statements that best portray the Canadian nursing workforce

  Define what sorts of issues are most pressing in case study

Under the Christian narrative and Christian vision, what sorts of issues are most pressing in this case study? Should the physician allow Mike to continue.

  Discuss nequality and immigration in human service

discuss diversity, inequality, and immigration in human services

  Identify and research a person in the medias spotlight

Identify and research a person in the media's spotlight who has used a specific logical fallacy

  Relationship between evidence and hypothesis

How do Bayesians understand the relationship between evidence and hypothesis? How can this approach be used to formulate a response to Duhem’s problem?

  Prepare an itinerary of all the bookings with best options

Prepare an itinerary of all the bookings with the best options available and confirm these details to the Managing Director via email.

  Discuss the ethical behavior for the success of a business

Ethical behavior is essential for the success of a business and often times ignored. It seems that no matter where we look today, the erosion of basic moral.

  Problems you encountered in the research process

A research narrative is a short essay that tells me, step-by-step, how you went about writing your final research paper.

  Which part of soul discovers what is right and what is wrong

Which part of the soul (and the city) discovers what is right and what is wrong? How is the judgment of this part of the soul related to the other parts when we act justly? How is it related to them when we act unjustly?

  Identify the specialized functions that were discovered

Consider some of the difficulties the split-brain operation causes and the strategies you would recommend to help a patient manage them. Was it ethical to do this study? Was it right to trade the suffering experienced by participants for the knowl..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd