Midterm SQL: 2
How many times have books titled
A First Course in Database Systems been borrowed?
Select count(*)
From Borrowed, Book
Where Borrowed.book_ISBN = Book.ISBN
And Book.title = ‘A First Course in Database Systems’
Previous slide
Next slide
Back to first slide
View graphic version