For each book title with more than 3 copies, list the names of library members who have borrowed them.

What will be an ideal response?


SELECT title, borrowerName
FROM Borrower bw, Book b, BookCopy bc, BookLoan bl
WHERE bw.borrowerNo = bl.borrowerNo AND bl.copyNo = bc.copyNo
AND bc.ISBN = b.ISBN AND EXISTS
(SELECT ISBN, COUNT(bc1.copyNo)
FROM BookCopy bc1
WHERE bc1.ISBN = bc.ISBN
GROUP BY bc1.ISBN
HAVING COUNT(bc1.copyNo) > 3);

Computer Science & Information Technology

You might also like to view...

Implement the base class in the shoe hierarchy in number 8 above.

What will be an ideal response?

Computer Science & Information Technology

The navigation tools in common dialog boxes are the same as those found in Windows Explorer

Indicate whether the statement is true or false

Computer Science & Information Technology

Comma, Date, Time, and Fraction are all number formats available in Excel 2013

Indicate whether the statement is true or false

Computer Science & Information Technology

Case 3-1Ari is learning how to write arithmetic expressions in Java.If Ari wants to change the order in which numbers are calculated, he should add ____ to them.

A. parentheses B. literals C. slashes D. mixed-modes

Computer Science & Information Technology