I got three tables to join named Books, Borrowers and Transactions.
The database scheme is as below:...Books(BookID,BookName,ISBN);...Borrowers(BorrowerID,BorrowerName,BorrowerLevel);...Transactions(TransactionID,BorrowerID,BookID,BorrowDate,ReturnDate);....