Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Task 1: (Creating Tables from information) Suppose you are creating a database for Library which has three tables called Borrower, Book, Rented. The columns of
Task 1: (Creating Tables from information) Suppose you are creating a database for Library which has three tables called Borrower, Book, Rented. The columns of Borrower table are: borrowerID, borrowerName, borrowerType; The columns of Book table are: bookID, bookTitle, Author, Price; The columns of Rented table are: Bor_ID, Boo_ID, Date; borrowerID is the primary key of Borrower table. bookID is the primary key of Book table. Bor_ID and Boo_ID together work as composite primary key of Rented table. Bor_ID is a foreign key referencing borrowerID. Boo_ID is a foreign key referencing bookID. Now you must create the tables according to the requirements stated above
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started