List the names of borrowers who currently have the book title “Lord of the Rings” on loan.

What will be an ideal response?


SELECT 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 bc.available = ‘N’ AND title = ‘Lord of the Rings’;

Computer Science & Information Technology

You might also like to view...

Every variable has a ______________ .

a) name b) type c) Both of the above. d) Neither of the above.

Computer Science & Information Technology

PowerPoint allows you to adjust colors to match or add contrast to slide elements by coloring photos.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Which of the following is NOT a default setting for the taskbar?

A) the Clock icon is displayed B) live thumbnail previews are enabled C) Quick Launch toolbar displays D) similar items are grouped

Computer Science & Information Technology

You can use the command line, Windows ________, or remote methods to administera server running in Server Core mode

Fill in the blank(s) with correct word

Computer Science & Information Technology