Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

database design 2 . 1 1 LAB - Implement supertype and subtype entities ( Sakila ) Refer to the customer and staff tables of the

database design 2.11 LAB - Implement supertype and subtype entities (Sakila) Refer to the customer and staff tables of the Sakila database. These tables have many columns in common and represent simile entities. Convert the customer and staff entities into subtypes of a new supertype person person address person id first_name belongs to last_name email 1(1) MOJ active tast_update staff person id picture username password works_at MO 1/1) store customer person id create, date The diagram uses Sakita naming conventions. Follow the Sakila conventions for your table and column names All lower case Underscore separator between root and suffix Foreign keys have the same name as referenced primary key Implement supertype and subtype entities as person, customer and staff tables with primary key person_id Implement attributes as columns All columns are NOT NULL The person id columns have data type SMALLINT UNSIGNEDAll columns are NOT NULL The person_id columns have data type SMALLINT UNSIGNED The last_update and create_date columns have data type TIMESTAMP The picture column has data type BLOB All other columns have data type VARCHAR(20) Implement the dependency relationships between subtype and supertype entities as foreign keys: The person_id columns of customer and staff become foreign keys referring to person Specify CASCADE actions for both relationships. Implement the belongs to and works_at relationships as foreign keys: belongs_to becomes an address_id foreign key in person referring to address. works_at becomes a store_id foreign key in staff referring to store Specify RESTRICT actions for both relationships The address and store tables with primary keys address_id and store_id, are pre-defined in the zyLab environment Foreign keys must have the same data types as the referenced primary keys: address_id has data type SMALLINT UNSIGNED store_id has data type TINYINT UNSIGNED If you execute your solution with the Sakila database, you must first drop customer, staff, and all constraints that refer to these tables Use the following statements with Sakila only, not in the zyLab environment DROP TABLE customer, staff; ALTER TABLE payment DROP CONSTRAINT fk payment customer, DROP CONSTRAINT [k_payment_staff: ALTER TABLE rentalDROP TABLE customer, staff ALTER TABLE payment DROP CONSTRAINT Ek_payment customer, DROP CONSTRAINT Ek_payment_staff; ALTER TABLE rental DROP CONSTRAINT fk_rental_customer, DROP CONSTRAINT fk_rental staff; ALTER TABLE Store DROP CONSTRAINT fk_store_staff: LAB ACTIVITY 2.11.1: LAB - Implement supertype and subtype entities (Sakila)0/10 Main.sql Load default template 1- Your CREATE TABLE statements go here 2

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

Databases Organizing Information Digital And Information Literacy

Authors: Greg Roza

1st Edition

1448805929, 978-1448805921

More Books

Students also viewed these Databases questions

Question

1. Ask students to include a rationale for their selections.

Answered: 1 week ago