Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

1 Given the following relational database schema: VIDEO= ( Title, RentalFee, NumberOfDaysAllowed, Rating) CUSTOMER= (FullName, PhoneNumber, Address, CreditCardN) RENTALTRANSCATION= ( ID, Title, DateCheckOut, DateReturn, TotalFee,

1 Given the following relational database schema:

VIDEO= ( Title, RentalFee, NumberOfDaysAllowed, Rating)

CUSTOMER= (FullName, PhoneNumber, Address, CreditCardN)

RENTALTRANSCATION= ( ID, Title, DateCheckOut, DateReturn, TotalFee, PhoneNumber, FullName)

Assume all dates are before the date of today and you may use <, >, =, and <> to compare any two dates. Write DDL statements to create the above tables and use appropriate data types for the attributes. The DDL statement must include at least the following constraints:

Every Primary Key;

Every Foreign Key;

For every Foreign Key constraint, the referential integrity constraints are:

ON DELETE SET NULL or CASCADE or DEFAULT whatever it is appropriate;

ON UPDATE SET NULL or CASCADE whatever it is appropriate;

Rating is either PG, PG13, or R;

TotalFee = ( DateReturn DateCheckOut)* RentalFee;

RentalFee >0;

RentalFee is not Null;

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