Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Refer to the address, store, staff, and customer tables of the Sakila database. In this lab, these tables initially have the same columns as in

Refer to the address, store, staff, and customer tables of the Sakila database. In this lab, these tables initially have the same columns as in Sakila.
Implement a new strong entity phone, as shown in the following diagram:
The diagram has four entities and three relationships. The entities are phone, store, staff, and customer. Phone has attributes phone_id R U, country_code R, phone_number R, and phone_type. Store, staff, and customer have no attributes. The relationships are store-has-phone, staff-has-phone, and customer-has-phone. All relationships have cardinality one-one maximum and zero-zero minimum.
The diagram uses Sakila 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 the diagram in three steps:
Step 1. Remove the phone column from address. This column is replaced by the new strong entity.
Step 2. Implement the strong entity as a new phone table. Specify data types VARCHAR(12) for phone_type and integer for other columns. Specify a suitable primary key and NOT NULL constraints according to the diagram.
Step 3. Implement the has relationships as foreign keys in customer, staff, and store. Specify UNIQUE constraints according to the diagram. Specify SET NULL for delete rules and CASCADE for update rules, as follows:

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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