The following tables form part of a Library database held in an RDBMS: Book (ISBN, title, edition, year) BookCopy (copyNo, ISBN, available) Borrower (borrowerNo, borrowerName, borrowerAddress) BookLoan (copyNo, dateOut, dateDue, borrowerNo) where: Book contains details of book titles in the library and the ISBN is the key. BookCopy contains details of the individual copies of books in the library and copyNo is the key. ISBN is a foreign key identifying the book title. Borrower contains details of library members who can borrow books and borrowerNo is the key. BookLoan contains details of the book copies that are borrowed by library members and copyNo/dateOut forms the key. borrowerNo is a foreign key identifying the borrower. Formulate the following queries in relational algebra and tuple relational calculus: 5.27 List all copies of book titles that are available for borrowing. 5.28 List all copies of the book title “Lord of the Rings” that are available for borrowing. 5.29 List the names of borrowers who currently have the book title “Lord of the Rings” on loan. 5.30 List the names of borrowers with overdue books.
The following tables form part of a Library
-
Book (ISBN, title, edition, year)
-
BookCopy (copyNo, ISBN, available)
-
Borrower (borrowerNo, borrowerName, borrowerAddress)
-
BookLoan (copyNo, dateOut, dateDue, borrowerNo)
where:
-
Book contains details of book titles in the library and the ISBN is the key.
-
BookCopy contains details of the individual copies of books in the library and copyNo is the key. ISBN is a foreign key identifying the book title.
-
Borrower contains details of library members who can borrow books and borrowerNo is the key.
-
BookLoan contains details of the book copies that are borrowed by library members and copyNo/dateOut forms the key. borrowerNo is a foreign key identifying the borrower.
Formulate the following queries in relational algebra and tuple relational calculus:
5.27 List all copies of book titles that are available for borrowing.
5.28 List all copies of the book title “Lord of the Rings” that are available for borrowing.
5.29 List the names of borrowers who currently have the book title “Lord of the Rings” on loan.
5.30 List the names of borrowers with overdue books.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps