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 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:
ALTER TABLE customer
ADD FOREIGN KEY (phone_id) REFERENCES phone (phone_id) ON DELETE SET NULL ON UPDATE CASCADE;
image text in transcribed

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

Medical Image Databases

Authors: Stephen T.C. Wong

1st Edition

1461375398, 978-1461375395

More Books

Students also viewed these Databases questions