Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

normalize tables to 3nf CREATE TABLE Book ( ISBN INT NOT NULL, B_Name VARCHAR (50) NOT NULL, B_author VARCHAR(20) NOT NULL, B_publisher VARCHAR(25), B_State VARCHAR(20)

normalize tables to 3nf

image text in transcribed

CREATE TABLE Book ( ISBN INT NOT NULL, B_Name VARCHAR (50) NOT NULL, B_author VARCHAR(20) NOT NULL, B_publisher VARCHAR(25), B_State VARCHAR(20) NOT NULL, lno INT NOT NULL, PRIMARY KEY (ISBN), FOREIGN KEY(Ino) REFERENCES LibraryItems(1_number) ) Table created. CREATE TABLE AudioBook( A_number INT NOT NULL, A_name VARCHAR (50) NOT NULL, ReaderName VARCHAR (50) NOT NULL, A_publisher VARCHAR(25), ISBN INT NOT NULL, PRIMARY KEY (A_number), FOREIGN KEY (ISBN) REFERENCES Book(ISBN) )

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

Students also viewed these Databases questions

Question

5. Understand how cultural values influence conflict behavior.

Answered: 1 week ago