Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Consider the following schema: Publisher (name, phone, address), PK: name. Book

ID: 672465 • Letter: C

Question

Consider the following schema:

Publisher (name, phone, address), PK: name.

Book (ISBN, title, year, published_by, previous_edition), PK: ISBN, FK: published_by refs Publisher, previous_edition refs Book.

Author (SSN, first_name, last_name, address, income), PK: SSN.

Write(aSSN, bISBN), PK: (aSSN, bISBN), FK: aSSN refs Author, bISBN refs Book.

Author_Editor(aeSSN, works_for), PK: aeSSN, FK: aeSSN refs Author, works_for refs Publisher.

Give relational algebraic expressions or SQL statements for the following plain English language queries based on the above schema.

5. Provide the SSN of those authors who have coauthored all the books written by Andy Smith.

Explanation / Answer

select auth.first_name, auth.last_name,pub.name,pub.phone
from Author auth,Author_Editor authe,Publisher pub
where authe.aeSSN=auth.SSN and works_for.authe=pub.name;