Can some rewrite the following sql tables into relational algebra format? a) SELECT NoOfCopies   FROM ( (BOOK NATURAL JOIN BOOK_COPIES ) NATURAL JOIN LIBRARY_BRANCH )   WHERE Title = 'The Lost Tribe' AND BranchName = 'Sharpstown'

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Can some rewrite the following sql tables into relational algebra format?

a)

SELECT NoOfCopies

 

FROM ( (BOOK NATURAL JOIN BOOK_COPIES ) NATURAL JOIN LIBRARY_BRANCH )

 

WHERE Title = 'The Lost Tribe' AND BranchName = 'Sharpstown'

b)

select count(b.No_of_copies ) from BOOK_COPIES b

join LIBRARY _BRANCH l on l.Branch_id=b.bBranch_id

join BOOK k on k.Book_id=l.Book_id

where k.Title=’The lost tribe’

group by l.Branch_id;

C)

SELECT Name FROM BORROWER B

WHERE NOT EXIST ( SELECT * FROM BOOK_LOANS L

WHERE B.CardNo = L.CardNo )

D)

select b.Title,  br.Name, br.Address

from BOOK b join BOOK_LOANS bl using(Book_id)

join BORROWER br using(Card_no)

join LIBRARY _BRANCH lb using(Branch_id)

where lb.Branch_name=’Sharpstown’

and bl.Due _date=SYSDATE;

E)

SELECT L.BranchName, COUNT(*) FROM BOOK_COPIES B, LIBRARY_BRANCH L

WHERE B.BranchId = L.BranchId GROUP BY L.BranchName

 

f)

select b.Title ,bc.No_of_copies

from BOOK b join BOOK_AUTHORS ba using(Book_id)

join  BOOK_COPIES bc  using(Book_id)

join LIBRARY_BRANCH lb using(Branch_id)

where ba.Author_name=’Stephen King ’

and lb.Branch_name=’Central’.

BOOK
Book_id Title Publisher_name
BOOK_AUTHORS
Book_id Author_name
PUBLISHER
Name Address Phone
BOOK_COPIES
Book_id Branch_id No_of_copies
BOOK_LOANS
Book_id Branch_id Card_no Date_out Due_date
LIBRARY_BRANCH
Branch_id Branch_name Address
BORROWER
Card_no Name Address Phone
Figure 8.14
A relational database
schema for a LIBRARY
database.
Transcribed Image Text:BOOK Book_id Title Publisher_name BOOK_AUTHORS Book_id Author_name PUBLISHER Name Address Phone BOOK_COPIES Book_id Branch_id No_of_copies BOOK_LOANS Book_id Branch_id Card_no Date_out Due_date LIBRARY_BRANCH Branch_id Branch_name Address BORROWER Card_no Name Address Phone Figure 8.14 A relational database schema for a LIBRARY database.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
SQL Query
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education