diff --git a/E-R Diagram.png b/E-R Diagram.png new file mode 100644 index 0000000..06bf54c Binary files /dev/null and b/E-R Diagram.png differ diff --git a/README.md b/README.md index 71be0cd..d0aa716 100644 --- a/README.md +++ b/README.md @@ -1 +1,76 @@ -# Library-Management-System-Database \ No newline at end of file +# Library Management System: Database Project + +## Background + +A local library is transitioning from traditional book-keeping to a digital system. The aim is to efficiently track books, borrowers, loans, returns, and provide insights into borrowing trends. + +## Objective + +Design and implement a relational database using MS SQL to support the library's operations and enhance querying capabilities. + +## Requirements + +### 1. Design an Entity Relationship Model (ERM) Diagram + +- **Entities**: Books, Borrowers, and Loans. +- **Attributes**: Specify attributes for each entity. +- **Relationships**: Show connections between entities. +- **Connectivity and Cardinality**: Indicate relationship types. +- **Keys**: Identify primary (PK). +- **Tools**: Use ERDPlus, Lucidchart, or similar. + +![Entity Relationship Diagram](E-R%20Diagram.png) + +### 2. Design the Relational Schema using MS SQL + +- **Books**: + - BookID (PK) + - Title + - Author + - ISBN + - Published Date + - Genre + - Shelf Location + - Current Status ('Available' or 'Borrowed') + +- **Borrowers**: + - BorrowerID (PK) + - First Name + - Last Name + - Email + - Date of Birth + - Membership Date + +- **Loans**: + - LoanID (PK) + - BookID (FK) + - BorrowerID (FK) + - Date Borrowed + - Due Date + - Date Returned (NULL if not returned yet) + +![Database Schema](relationalSchema.png) + +### 3. Build and Seed the Database + +- Construct the database in MS SQL. +- Seed with 1000 books, 1000 borrowers, and 1000 loans. Include DML scripts for seeding in the repository. + +### 4. Complex Queries and Procedures + +- **List of Borrowed Books**: Query to retrieve all borrowed books for a specific borrower. +- **Active Borrowers with CTEs**: Identify borrowers with 2+ borrowed books not yet returned. +- **Borrowing Frequency using Window Functions**: Rank borrowers based on frequency. +- **Popular Genre Analysis**: Determine the most popular genre per month. +- **Stored Procedure - `sp_AddNewBorrower`**: Add a new borrower; handle existing emails. +- **Database Function - `fn_CalculateOverdueFees`**: Compute overdue fees for loans. +- **Database Function - `fn_BookBorrowingFrequency`**: Count how many times a book has been borrowed. +- **Overdue Analysis**: List overdue books with associated borrowers. +- **Author Popularity using Aggregation**: Rank authors by borrowing frequency. +- **Genre Preference by Age**: Determine genre preference across age groups. +- **Stored Procedure - `sp_BorrowedBooksReport`**: Generate a report of books borrowed within a date range. +- **Trigger Implementation**: Log changes in book status to an `AuditLog`. + +### BONUS + +- **Weekly Peak Days**: Identify the three busiest days of the week for loans and express as a percentage of total loans. diff --git a/complexQueriesAndProcedures/1.ListOfBorrowedBooks.sql b/complexQueriesAndProcedures/1.ListOfBorrowedBooks.sql new file mode 100644 index 0000000..046379c --- /dev/null +++ b/complexQueriesAndProcedures/1.ListOfBorrowedBooks.sql @@ -0,0 +1,7 @@ +--1. List of Borrowed Books: Retrieve all books borrowed by a specific borrower, including those currently unreturned. + +declare @BorrowerId int = 7; +SELECT Books.title, Books.author, Loans.dateBorrowed, Loans.dueDate +FROM Loans +JOIN Books ON Loans.bookId = Books.bookId +WHERE Loans.borrowerId = @BorrowerId; diff --git a/complexQueriesAndProcedures/10.GenrePreferenceByAgeUsingGroupByAndHaving.sql b/complexQueriesAndProcedures/10.GenrePreferenceByAgeUsingGroupByAndHaving.sql new file mode 100644 index 0000000..0837a6d --- /dev/null +++ b/complexQueriesAndProcedures/10.GenrePreferenceByAgeUsingGroupByAndHaving.sql @@ -0,0 +1,52 @@ +--10.Genre Preference by Age using Group By and Having: +WITH BorrowerAges AS ( + SELECT + borrowerId, + (DATEDIFF(YEAR, dateOfBirth, GETDATE()) / 10) * 10 AS AgeBracket + FROM + Borrowers +), +LoanGenres AS ( + SELECT + ba.AgeBracket, + b.genre, + COUNT(*) AS GenreCount + FROM + BorrowerAges ba + JOIN Loans l ON ba.borrowerId = l.borrowerId + JOIN Books b ON l.bookId = b.bookId + GROUP BY + ba.AgeBracket, + b.genre +), +RankedGenres AS ( + SELECT + AgeBracket, + genre, + GenreCount, + ROW_NUMBER() OVER ( + PARTITION BY AgeBracket + ORDER BY GenreCount DESC, genre ASC + ) AS RowNum + FROM + LoanGenres +) +SELECT + CASE + WHEN AgeBracket = 0 THEN '0-10' + WHEN AgeBracket = 10 THEN '11-20' + WHEN AgeBracket = 20 THEN '21-30' + WHEN AgeBracket = 30 THEN '31-40' + WHEN AgeBracket = 40 THEN '41-50' + WHEN AgeBracket = 50 THEN '51-60' + WHEN AgeBracket >= 60 THEN '61+' + ELSE 'Unknown' + END AS AgeGroup, + genre, + GenreCount +FROM + RankedGenres +WHERE + RowNum = 1 +ORDER BY + AgeBracket; diff --git a/complexQueriesAndProcedures/11.StoredProcedure-BorrowedBooksReport.sql b/complexQueriesAndProcedures/11.StoredProcedure-BorrowedBooksReport.sql new file mode 100644 index 0000000..8bd6ceb --- /dev/null +++ b/complexQueriesAndProcedures/11.StoredProcedure-BorrowedBooksReport.sql @@ -0,0 +1,26 @@ +--11.Stored Procedure - Borrowed Books Report: +CREATE OR ALTER PROCEDURE PROCEDURE sp_BorrowedBooksReport + @StartDate DATE, + @EndDate DATE +AS +BEGIN + -- Query to retrieve borrowed book details within the specified date range + SELECT + b.title AS BookTitle, + b.author AS Author, + br.firstName + ' ' + br.lastName AS BorrowerName, + l.dateBorrowed AS BorrowingDate + FROM + Loans l + INNER JOIN Books b ON l.bookId = b.bookId + INNER JOIN Borrowers br ON l.borrowerId = br.borrowerId + WHERE + l.dateBorrowed BETWEEN @StartDate AND @EndDate + ORDER BY + BorrowingDate ASC; +END; + +--Test the sp +EXEC sp_BorrowedBooksReport + @StartDate = '2024-01-01', + @EndDate = '2024-01-17'; \ No newline at end of file diff --git a/complexQueriesAndProcedures/12.TriggerImplementation.sql b/complexQueriesAndProcedures/12.TriggerImplementation.sql new file mode 100644 index 0000000..d7cc9ab --- /dev/null +++ b/complexQueriesAndProcedures/12.TriggerImplementation.sql @@ -0,0 +1,38 @@ +--12.Trigger Implementation +DROP TRIGGER IF EXISTS trg_BookStatusChange; +GO +CREATE TRIGGER trg_BookStatusChange ON Books +AFTER UPDATE +AS +BEGIN + DECLARE @BookID INT; + DECLARE @OldStatus VARCHAR(50); + DECLARE @NewStatus VARCHAR(50); + DECLARE @StatusChange VARCHAR(100); + IF UPDATE(currentStatus) + BEGIN + SELECT @BookID = i.bookId, @OldStatus = d.currentStatus, @NewStatus = i.currentStatus + FROM inserted i + JOIN deleted d ON i.bookId = d.bookId; + + IF (@OldStatus <> @NewStatus) + BEGIN + SET @StatusChange = 'Status changed from ' + @OldStatus + ' to ' + @NewStatus; + INSERT INTO AuditLog + VALUES (@BookID, @StatusChange, GETDATE()); + END + END +END; + +-- Example to update a book's status to 'Borrowed' +UPDATE Books +SET currentStatus = 'Borrowed' +WHERE bookId = 1 AND currentStatus = 'Available'; + +-- Example to update a book's status to 'Available' +UPDATE Books +SET currentStatus = 'Available' +WHERE bookId = 1 AND currentStatus = 'Borrowed'; + +-- Check the AuditLog: +SELECT * FROM AuditLog; diff --git a/complexQueriesAndProcedures/14.SQLStoredProcedureWithTempTable.sql b/complexQueriesAndProcedures/14.SQLStoredProcedureWithTempTable.sql new file mode 100644 index 0000000..0cf8b55 --- /dev/null +++ b/complexQueriesAndProcedures/14.SQLStoredProcedureWithTempTable.sql @@ -0,0 +1,36 @@ +-- 14.SQL Stored Procedure with Temp Table: +DROP PROCEDURE IF EXISTS sp_GetOverdueBooksByBorrower; +GO +CREATE PROCEDURE sp_GetOverdueBooksByBorrower +AS +BEGIN + -- Create a temporary table + CREATE TABLE #OverdueBorrowers ( + borrowerId INT + ); + + -- Insert borrowers who have overdue books into the temporary table: + INSERT INTO #OverdueBorrowers (borrowerId) + SELECT DISTINCT l.borrowerId + FROM Loans l + WHERE l.dateReturned IS NULL AND l.dueDate < GETDATE(); + + -- Select the overdue books for each borrower by joining the temp table with the Loans table + SELECT + br.borrowerId, + br.firstName + ' ' + br.lastName AS BorrowerName, + b.bookId, + b.title AS BookTitle, + l.dueDate AS DueDate + FROM #OverdueBorrowers obr + JOIN Loans l ON obr.borrowerId = l.borrowerId + JOIN Borrowers br ON obr.borrowerId = br.borrowerId -- Make sure to join Borrowers here + JOIN Books b ON l.bookId = b.bookId + WHERE l.dateReturned IS NULL AND l.dueDate < GETDATE(); + + -- Drop the temporary table + DROP TABLE #OverdueBorrowers; +END; + +-- Test the sp: +EXEC sp_GetOverdueBooksByBorrower; diff --git a/complexQueriesAndProcedures/2.ActiveBorrowersWithCTEs.sql b/complexQueriesAndProcedures/2.ActiveBorrowersWithCTEs.sql new file mode 100644 index 0000000..607932e --- /dev/null +++ b/complexQueriesAndProcedures/2.ActiveBorrowersWithCTEs.sql @@ -0,0 +1,11 @@ +--2.Active Borrowers with CTEs: +WITH ActiveBorrowers AS ( + SELECT borrowerId, COUNT(*) AS TotalLoans + FROM Loans + WHERE dateReturned IS NULL + GROUP BY borrowerId + HAVING COUNT(*) >= 2 +) +SELECT Borrowers.*, ActiveBorrowers.TotalLoans +FROM ActiveBorrowers +JOIN Borrowers ON ActiveBorrowers.borrowerId = Borrowers.borrowerId; \ No newline at end of file diff --git a/complexQueriesAndProcedures/3.BorrowingFrequencyUsingWindowFunctions.sql b/complexQueriesAndProcedures/3.BorrowingFrequencyUsingWindowFunctions.sql new file mode 100644 index 0000000..c0bd1c6 --- /dev/null +++ b/complexQueriesAndProcedures/3.BorrowingFrequencyUsingWindowFunctions.sql @@ -0,0 +1,6 @@ +--3.Borrowing Frequency using Window Functions: +SELECT Borrowers.borrowerId, Borrowers.firstName, Borrowers.lastName, COUNT(Loans.borrowerId) AS TotalLoans, + RANK() OVER (ORDER BY COUNT(Loans.borrowerId) DESC) AS BorrowerRank +FROM Borrowers +LEFT JOIN Borrowers ON Loans.borrowerId = Borrowers.borrowerId +GROUP BY Borrowers.borrowerId, Borrowers.firstName, Borrowers.lastName; diff --git a/complexQueriesAndProcedures/4.PopularGenreAnalysisUsingJoinsAndWindowFunction.sql b/complexQueriesAndProcedures/4.PopularGenreAnalysisUsingJoinsAndWindowFunction.sql new file mode 100644 index 0000000..6349852 --- /dev/null +++ b/complexQueriesAndProcedures/4.PopularGenreAnalysisUsingJoinsAndWindowFunction.sql @@ -0,0 +1,9 @@ +--4.Popular Genre Analysis using Joins and Window Functions: +DECLARE @Month INT=4; +DECLARE @Year INT=2022; +SELECT genre, COUNT(*) AS TotalLoans, + RANK() OVER (ORDER BY COUNT(*) DESC) AS GenreRank +FROM Loans +JOIN Books ON Loans.bookId = Books.bookId +WHERE MONTH(dateBorrowed) = @Month AND YEAR(dateBorrowed) = @Year +GROUP BY genre; \ No newline at end of file diff --git a/complexQueriesAndProcedures/5.StoredProcedure-AddNewBorrowers.sql b/complexQueriesAndProcedures/5.StoredProcedure-AddNewBorrowers.sql new file mode 100644 index 0000000..c098e6a --- /dev/null +++ b/complexQueriesAndProcedures/5.StoredProcedure-AddNewBorrowers.sql @@ -0,0 +1,28 @@ +--5.Stored Procedure - Add New Borrowers: +CREATE OR ALTER PROCEDURE PROCEDURE sp_AddNewBorrower + @FirstName VARCHAR(255), + @LastName VARCHAR(255), + @Email VARCHAR(255), + @DateOfBirth DATE, + @MembershipDate DATE +AS +BEGIN + IF EXISTS (SELECT Borrowers.borrowerId FROM Borrowers WHERE email = @Email) + BEGIN + SELECT 'Error: A borrower with this email already exists.' AS ErrorMessage; + END + ELSE + BEGIN + INSERT INTO Borrowers + VALUES (@FirstName, @LastName, @Email, @DateOfBirth, @MembershipDate); + SELECT SCOPE_IDENTITY() AS NewBorrowerID; + END +END; + +-- Test the procedure by executing it +EXEC sp_AddNewBorrower + @FirstName = 'John', + @LastName = 'Doe', + @Email = 'john.doe@example.com', + @DateOfBirth = '1990-05-15', + @MembershipDate = '2023-04-15'; \ No newline at end of file diff --git a/complexQueriesAndProcedures/6.DatabaseFunction-CalculateOverdueFees.sql b/complexQueriesAndProcedures/6.DatabaseFunction-CalculateOverdueFees.sql new file mode 100644 index 0000000..5450695 --- /dev/null +++ b/complexQueriesAndProcedures/6.DatabaseFunction-CalculateOverdueFees.sql @@ -0,0 +1,40 @@ +--6.Database Function - Calculate Overdue Fees +drop function if exists fn_CalculateOverdueFees; +go +CREATE FUNCTION fn_CalculateOverdueFees (@LoanID INT) +RETURNS MONEY +AS +BEGIN + DECLARE @DateBorrowed DATE; + DECLARE @DueDate DATE; + DECLARE @DateReturned DATE; + DECLARE @OverdueDays INT; + DECLARE @OverdueFee MONEY = 0; + + -- Retrieve loan dates + SELECT @DateBorrowed = dateBorrowed, @DueDate = dueDate, @DateReturned = dateReturned + FROM Loans + WHERE loanId = @LoanID; + + -- Calculate overdue days + IF @DateReturned IS NULL + SET @DateReturned = GETDATE(); + + SET @OverdueDays = DATEDIFF(DAY, @DueDate, @DateReturned); + + -- Calculate fees based on the overdue days + IF @OverdueDays > 0 + BEGIN + IF @OverdueDays <= 30 + SET @OverdueFee = @OverdueDays * 1.00; + ELSE + SET @OverdueFee = (30 * 1.00) + ((@OverdueDays - 30) * 2.00); + END + + RETURN @OverdueFee; +END; + + + +--Test the function: +SELECT dbo.fn_CalculateOverdueFees(1) AS OverdueFee; \ No newline at end of file diff --git a/complexQueriesAndProcedures/7.DatabaseFunction-BookBorrowingFrequency.sql b/complexQueriesAndProcedures/7.DatabaseFunction-BookBorrowingFrequency.sql new file mode 100644 index 0000000..69cc17c --- /dev/null +++ b/complexQueriesAndProcedures/7.DatabaseFunction-BookBorrowingFrequency.sql @@ -0,0 +1,15 @@ +--7.Database Function - Book Borrowing Frequency: + +CREATE FUNCTION fn_BookBorrowingFrequency (@BookID INT) +RETURNS INT +AS +BEGIN + RETURN( + SELECT COUNT(*) + FROM Loans + WHERE bookId = @BookID + ); +END; + + +SELECT dbo.fn_BookBorrowingFrequency(1) AS BorrowingFrequency; diff --git a/complexQueriesAndProcedures/8.OverdueAnalysis.sql b/complexQueriesAndProcedures/8.OverdueAnalysis.sql new file mode 100644 index 0000000..45ca4cc --- /dev/null +++ b/complexQueriesAndProcedures/8.OverdueAnalysis.sql @@ -0,0 +1,11 @@ +--8.Overdue Analysis: List all books overdue by more than 30 days with their associated borrowers. + +SELECT b.*,bo.*, + DATEDIFF(DAY, l.dueDate, GETDATE()) AS DaysOverdue +FROM + Loans l + JOIN Books b ON l.bookId = b.bookId + JOIN Borrowers bo ON l.borrowerId = bo.borrowerId +WHERE + l.dateReturned IS NULL AND + DATEDIFF(DAY, l.dueDate, GETDATE()) > 30; diff --git a/complexQueriesAndProcedures/9.AuthorPopularityUsingAggregation.sql b/complexQueriesAndProcedures/9.AuthorPopularityUsingAggregation.sql new file mode 100644 index 0000000..0e5016e --- /dev/null +++ b/complexQueriesAndProcedures/9.AuthorPopularityUsingAggregation.sql @@ -0,0 +1,11 @@ +--9.Author Popularity using Aggregation: + +SELECT + b.author, + COUNT(l.loanId) AS BorrowingCount, + RANK() OVER (ORDER BY COUNT(l.loanId) DESC) AS AuthorRank +FROM + Books b + LEFT JOIN Loans l ON b.bookId = l.bookId +GROUP BY + b.author \ No newline at end of file diff --git a/complexQueriesAndProcedures/BONUS-WeeklyPeakDays.sql b/complexQueriesAndProcedures/BONUS-WeeklyPeakDays.sql new file mode 100644 index 0000000..14fc358 --- /dev/null +++ b/complexQueriesAndProcedures/BONUS-WeeklyPeakDays.sql @@ -0,0 +1,27 @@ +-- BONUS:Weekly peak days: + +WITH LoanCounts AS ( + SELECT + DATENAME(weekday, dateBorrowed) AS LoanDay, + COUNT(*) AS LoanCount + FROM + Loans + GROUP BY + DATENAME(weekday, dateBorrowed) +), +TotalLoans AS ( + SELECT + SUM(LoanCount) AS TotalLoanCount + FROM + LoanCounts +) + +SELECT TOP 3 + LC.LoanDay, + LC.LoanCount, + CAST((LC.LoanCount * 100.0 / TL.TotalLoanCount) AS DECIMAL(5, 2)) AS LoanPercentage +FROM + LoanCounts LC, + TotalLoans TL +ORDER BY + LoanPercentage DESC; \ No newline at end of file diff --git a/libraryTablesCreationn-DDL.sql b/libraryTablesCreationn-DDL.sql new file mode 100644 index 0000000..7ad83eb --- /dev/null +++ b/libraryTablesCreationn-DDL.sql @@ -0,0 +1,35 @@ +CREATE TABLE Books( + bookId INT PRIMARY KEY IDENTITY, + title VARCHAR(255) NOT NULL, + author VARCHAR(255) NOT NULL, + isbn VARCHAR(20) NOT NULL UNIQUE, + publishedDate DATE NOT NULL, + genre VARCHAR(255) NOT NULL, + shelfLocation VARCHAR(10) NOT NULL, + currentStatus VARCHAR(10) NOT NULL CHECK(currentStatus IN ('Available', 'Borrowed')) +); + +CREATE TABLE Borrowers( + borrowerId INT PRIMARY KEY IDENTITY, + firstName VARCHAR(255) NOT NULL, + lastName VARCHAR(255) NOT NULL, + email VARCHAR(255) NOT NULL CHECK(email LIKE '%@%.%'), + dateOfBirth DATE NOT NULL, + membershipDate DATE NOT NULL +); + +CREATE TABLE Loans( + loanId INT PRIMARY KEY IDENTITY, + dateBorrowed DATE NOT NULL, + dueDate DATE NOT NULL, + dateReturned DATE, + bookId INT FOREIGN KEY REFERENCES books(bookId), + borrowerId INT FOREIGN KEY REFERENCES borrowers(borrowerId) +); + +CREATE TABLE AuditLog ( + auditLogID INT PRIMARY KEY IDENTITY, + bookID INT NOT NULL, + statusChange VARCHAR(50) NOT NULL, + changeDate DATETIME DEFAULT GETDATE() +); \ No newline at end of file diff --git a/relationalSchema.png b/relationalSchema.png new file mode 100644 index 0000000..bf98d72 Binary files /dev/null and b/relationalSchema.png differ diff --git a/seeding/booksTableSeeding-DML.sql b/seeding/booksTableSeeding-DML.sql new file mode 100644 index 0000000..1ca93e3 --- /dev/null +++ b/seeding/booksTableSeeding-DML.sql @@ -0,0 +1,1000 @@ +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '719955492-3', '9/28/2014', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '712300962-2', '2/14/2018', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '413726712-X', '5/9/2018', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '063751544-7', '2/25/2016', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '811689110-3', '5/29/2022', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '255631167-3', '4/5/2017', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '201789517-2', '12/13/2015', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '693128634-X', '6/15/2017', 'Fantasy', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '173280559-8', '3/28/2016', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '249947636-2', '2/7/2022', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '144934461-5', '3/12/2019', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '353949874-5', '5/17/2020', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '099836561-0', '2/25/2017', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '562292743-9', '3/30/2015', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '738400615-5', '8/11/2015', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '037916362-4', '8/23/2019', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Robert Anderson', '520061298-5', '10/15/2017', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '313031402-4', '8/21/2019', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '845749836-3', '6/29/2018', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '602500774-8', '6/10/2015', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '696887491-1', '6/7/2017', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '682622957-9', '1/24/2023', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '246832071-9', '7/29/2014', 'Horror', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '805399472-5', '8/26/2021', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '128202149-4', '12/31/2014', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '156549680-9', '1/7/2017', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '799087146-7', '10/22/2018', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '800028188-0', '4/3/2017', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '805453789-1', '5/30/2022', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '418956680-2', '8/2/2020', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '157751157-3', '6/22/2015', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '811661372-3', '1/23/2021', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '015568334-9', '6/23/2014', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '837147584-5', '11/25/2020', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '777754323-7', '5/3/2019', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '204163944-X', '4/30/2020', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '741853809-X', '7/25/2019', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '356781243-2', '8/25/2018', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '927950931-4', '8/24/2019', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '477399989-6', '7/10/2019', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '070671292-7', '2/20/2020', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '022212257-9', '9/4/2017', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '605934082-2', '5/14/2021', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '319019898-5', '5/12/2014', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '022274796-X', '12/22/2017', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '989495227-5', '4/2/2022', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '844998421-1', '3/29/2020', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '139737460-8', '3/22/2018', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '971832704-5', '10/14/2018', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '751404070-6', '10/7/2022', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '846008340-3', '8/1/2020', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '783706381-3', '1/1/2015', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '761086689-X', '12/15/2014', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '681530901-0', '11/29/2015', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '382255535-5', '8/29/2016', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '536510023-9', '11/16/2016', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '879960857-X', '5/24/2019', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '874349723-3', '3/10/2020', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '751739848-2', '7/18/2014', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '458482684-6', '11/10/2022', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '860175073-7', '5/29/2017', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '206885426-0', '11/18/2020', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '039867060-9', '9/6/2022', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '329179720-5', '12/9/2014', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '827451359-2', '7/20/2021', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Robert Anderson', '186921434-X', '5/21/2015', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '419908571-8', '1/24/2020', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '819069541-X', '5/7/2018', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '455871176-X', '4/21/2015', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '290980321-X', '7/5/2022', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '693466846-4', '10/29/2016', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '976468288-X', '11/12/2017', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '606930133-1', '7/22/2019', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '189943410-0', '4/25/2016', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '920557168-7', '10/16/2017', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '087618952-4', '4/12/2019', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '568007934-8', '2/14/2022', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '146546735-1', '7/10/2016', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '585967169-5', '5/6/2019', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '182249775-2', '12/4/2021', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '898393192-2', '7/8/2021', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '633692276-6', '9/1/2015', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '340184139-4', '8/10/2015', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '473049968-9', '8/15/2018', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '295814828-9', '12/17/2021', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '416258471-0', '7/4/2019', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '845348598-4', '5/31/2017', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Robert Anderson', '043155838-8', '8/21/2022', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '471326403-2', '7/19/2022', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '322658669-6', '10/18/2022', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '468140461-6', '8/28/2018', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '905542548-6', '4/22/2017', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '127337241-7', '7/15/2019', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '039526315-8', '12/10/2020', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '422740078-3', '10/14/2015', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '916048371-7', '9/20/2019', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '575594775-9', '3/10/2017', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '394077733-1', '6/28/2015', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '862131699-4', '1/4/2016', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '773218819-5', '2/14/2022', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '756023076-8', '9/16/2017', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '168611323-4', '10/25/2016', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '472703431-X', '12/17/2020', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '872726292-8', '2/3/2019', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '002838701-5', '12/26/2022', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '669736323-1', '1/5/2019', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '373428383-3', '8/14/2020', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '567568408-5', '10/8/2022', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '944078649-3', '7/15/2019', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '111213108-6', '3/29/2017', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '685728815-1', '4/25/2014', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '703019644-9', '4/24/2020', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '706471184-2', '2/24/2020', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '884333701-7', '8/6/2015', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Michael Johnson', '287918467-3', '12/23/2015', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '040458661-9', '9/10/2022', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '294642343-3', '2/24/2022', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '913543814-2', '8/26/2021', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '319907875-3', '6/7/2017', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '065489869-3', '3/20/2016', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '836393271-X', '6/15/2022', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '040613088-4', '3/5/2015', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '323381981-1', '9/19/2016', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '243337788-9', '11/11/2016', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '594122673-X', '2/21/2022', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '849886029-6', '6/14/2022', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '068146858-0', '3/7/2015', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '465432389-9', '5/4/2022', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '058194873-4', '2/6/2019', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '322203359-5', '12/13/2016', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Amanda Garcia', '813957429-5', '7/21/2016', 'Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '981328546-X', '5/27/2021', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '486627736-X', '4/8/2023', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '174173370-7', '5/31/2020', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '852844620-4', '1/20/2019', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '741232093-9', '5/12/2016', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '891188804-4', '12/1/2016', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '657202281-1', '9/7/2018', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '326299486-3', '3/2/2019', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '724298761-X', '1/6/2015', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '077886951-2', '10/4/2019', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '329529887-4', '10/16/2022', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '732568817-2', '10/14/2016', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '686145031-6', '2/25/2015', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '303195075-5', '8/25/2020', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '103378606-3', '1/3/2021', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '195894068-2', '4/6/2021', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '110444910-2', '4/19/2018', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '396751490-0', '2/24/2015', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '776519052-0', '2/19/2021', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '044491421-8', '11/12/2021', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '197404869-1', '2/5/2018', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '061765332-1', '1/7/2016', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '928166733-9', '11/22/2016', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '891977362-9', '4/6/2023', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '968065480-X', '3/31/2022', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '536286926-4', '9/28/2014', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '560985988-3', '8/11/2019', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '652747899-2', '10/30/2014', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '315975916-4', '7/20/2022', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '106917206-5', '12/26/2016', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '812022885-5', '7/12/2019', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '972958032-4', '9/17/2020', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '620742413-1', '12/21/2019', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '426004337-4', '9/20/2019', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '198349375-9', '8/27/2022', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '634054546-7', '1/13/2016', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '586127585-8', '10/15/2019', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '784719008-7', '10/12/2017', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '870348588-9', '6/24/2022', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '993463651-4', '9/16/2016', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '668604958-1', '11/18/2019', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '204910751-X', '6/2/2020', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '221233511-3', '8/16/2022', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '197578250-X', '4/16/2021', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '832333153-7', '12/16/2019', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '617739857-X', '9/16/2016', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '487449739-X', '1/14/2023', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '625821916-0', '7/4/2017', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '005174640-9', '11/29/2014', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '664973431-4', '2/28/2018', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '025799021-6', '12/17/2020', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '980674563-9', '7/30/2019', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '467882399-9', '4/15/2015', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '516187001-X', '4/2/2015', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '201058312-4', '9/27/2016', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '337431163-6', '9/6/2015', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '420414404-7', '3/2/2018', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '485239838-0', '9/28/2018', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '634478537-3', '11/19/2019', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '553094723-9', '12/2/2015', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '027330276-0', '9/6/2017', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '918671140-7', '2/17/2015', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '123950115-3', '8/4/2022', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '862100525-5', '8/4/2016', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '810366463-4', '6/23/2018', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '595777023-X', '4/24/2021', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '722453530-3', '8/24/2017', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '946547070-8', '1/29/2020', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '975734703-5', '5/6/2018', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '419875780-1', '11/10/2021', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '238268424-0', '9/22/2018', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '104947233-0', '4/5/2019', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '963775043-6', '3/9/2017', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '422917259-1', '11/5/2021', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '498221778-5', '3/29/2023', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '269174966-5', '4/30/2015', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '716156707-6', '4/2/2018', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '982315030-3', '3/13/2018', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '473860978-5', '5/18/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '091963303-X', '1/31/2023', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '334638658-9', '6/12/2020', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '102283010-4', '2/20/2016', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '206679902-5', '2/8/2018', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '450218192-7', '3/22/2018', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '790167346-X', '10/4/2015', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '457414524-2', '8/11/2019', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '853424500-2', '4/13/2018', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '988007054-2', '9/25/2015', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '203390664-7', '7/28/2017', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '631354102-2', '11/15/2016', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '861070321-5', '3/11/2020', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '362873943-8', '10/12/2014', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '543343691-8', '10/14/2015', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '051658785-4', '1/1/2017', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '180368156-X', '6/18/2020', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '567727907-2', '5/22/2014', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '639240627-1', '5/1/2018', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '909813454-8', '4/11/2018', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '097794886-2', '8/5/2014', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '797849210-9', '2/9/2015', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '165937890-7', '12/15/2019', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '251681982-X', '6/30/2015', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '732276251-7', '1/31/2023', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '092130261-4', '9/17/2021', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '840979454-3', '7/5/2019', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '804918930-9', '10/31/2022', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '095417843-2', '5/28/2017', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '514073819-8', '8/10/2020', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '617576891-4', '7/27/2019', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '537601256-5', '1/18/2021', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '010869677-4', '3/5/2016', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '419102677-1', '1/22/2015', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '646198435-6', '7/13/2018', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '529963888-4', '7/2/2015', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '810934840-8', '12/26/2019', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '101574768-X', '9/27/2019', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '571360829-8', '12/29/2018', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '595288742-2', '7/4/2019', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '971876730-4', '3/29/2020', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '149003903-1', '7/11/2017', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '313578734-6', '12/21/2016', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '530682679-2', '3/23/2018', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '978372604-8', '11/21/2022', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '129971655-5', '6/16/2016', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '786554982-2', '11/10/2020', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '065382735-0', '11/8/2017', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '105920038-4', '2/15/2021', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '059114145-0', '4/4/2023', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '426870725-5', '2/4/2019', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '419424681-0', '3/27/2017', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '784534529-6', '2/3/2022', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '100896088-8', '8/16/2019', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '923563777-5', '2/4/2017', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '919490345-X', '6/3/2016', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '024188201-X', '2/5/2020', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '473024459-1', '5/5/2015', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '668380451-6', '2/21/2016', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '200742544-0', '11/26/2020', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '261303696-6', '11/2/2018', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '266148109-5', '3/10/2015', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '392687736-7', '8/4/2021', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '837673203-X', '11/20/2021', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '789197017-3', '3/9/2018', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '440385961-5', '9/22/2017', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '094977306-9', '2/19/2015', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '316566158-8', '3/22/2023', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '097826212-3', '11/8/2015', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '045818324-5', '7/21/2020', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '271410199-2', '9/1/2016', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '242580666-0', '9/11/2022', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '486566143-3', '5/25/2021', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '344654342-2', '4/13/2017', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '265938290-5', '1/27/2018', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '964956336-9', '10/11/2022', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '091404795-7', '9/9/2018', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '733660184-7', '7/20/2018', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '261069393-1', '9/24/2020', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '534369390-3', '12/26/2019', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '065381614-6', '2/17/2019', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '972463570-8', '4/25/2014', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '493891225-2', '10/30/2017', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '729835487-6', '7/25/2014', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '894428040-1', '12/13/2014', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '897417353-0', '1/11/2015', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '360234646-3', '11/11/2017', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '687399011-6', '10/30/2016', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '093526714-X', '11/15/2018', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '569948197-4', '6/4/2016', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '117283944-1', '10/27/2017', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '702557167-9', '3/9/2023', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '426931034-0', '7/30/2015', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '599095162-0', '11/3/2015', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '417865120-X', '9/4/2021', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '103972530-9', '4/13/2015', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '819130546-1', '8/11/2020', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '001350444-4', '2/24/2015', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '027575490-1', '6/20/2016', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '609880232-7', '8/2/2017', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '155758030-8', '7/30/2016', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '344782044-6', '1/19/2023', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '776819900-6', '8/28/2017', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '636293759-7', '2/20/2019', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '744932449-0', '1/13/2017', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '280881079-2', '10/5/2018', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '347231346-3', '6/9/2015', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '769102501-7', '12/4/2020', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '727777778-6', '1/23/2023', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '243296112-9', '12/20/2015', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '982695511-6', '10/5/2014', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '726811229-7', '12/31/2018', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '402281335-0', '12/30/2019', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '203976876-9', '6/15/2015', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '295871601-5', '12/5/2018', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '096219337-2', '2/13/2020', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '766924370-8', '9/6/2017', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '726847472-5', '4/12/2017', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '906966384-8', '9/4/2020', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '368002452-5', '2/3/2020', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '323441609-5', '9/28/2022', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '053152438-8', '11/15/2021', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '852563096-9', '8/26/2016', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '348751115-0', '5/8/2022', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '030698995-6', '2/5/2019', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '282224841-9', '11/28/2021', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '402763296-6', '12/3/2021', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '117403666-4', '7/9/2015', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '580618707-1', '7/1/2016', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '009989957-4', '12/1/2015', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '432013418-4', '8/24/2014', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '899219499-4', '9/18/2014', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '413565861-X', '5/11/2016', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '232696736-4', '2/24/2019', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '127316078-9', '9/25/2016', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '703303921-2', '5/16/2014', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '773736168-5', '9/30/2022', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '445261332-2', '7/26/2016', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '501534826-6', '10/25/2015', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '422938409-2', '11/26/2015', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '628510600-2', '4/1/2022', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '989468515-3', '6/21/2021', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '522258289-2', '6/23/2016', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '495624623-4', '12/9/2014', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '544883511-2', '8/17/2019', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '989687395-X', '12/12/2015', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '533907024-7', '1/16/2021', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '056795218-5', '9/28/2017', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '125422290-1', '10/27/2021', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '148564172-1', '2/9/2018', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '043977087-4', '10/18/2017', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '835467194-1', '5/15/2017', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '383331864-3', '10/20/2015', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '407313465-5', '12/10/2015', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '294012038-2', '9/11/2016', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '192252596-0', '10/5/2019', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '743553035-2', '3/9/2019', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '133779638-7', '4/3/2023', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '489074490-8', '11/11/2014', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '634396127-5', '7/4/2022', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '672507937-7', '10/22/2016', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '149294555-2', '3/1/2021', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Michael Johnson', '143889305-1', '6/20/2018', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '198648385-1', '9/11/2021', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '448930066-2', '9/7/2019', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '602458425-3', '11/29/2017', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '783384072-6', '7/29/2015', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '289757675-8', '11/9/2014', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '647737643-1', '10/28/2021', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '411721192-7', '3/24/2023', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '255562933-5', '4/6/2018', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '057898485-7', '5/24/2021', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '887208624-8', '1/24/2022', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '750959325-5', '8/9/2017', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '101445350-X', '7/26/2016', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '763686132-1', '11/11/2022', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '614753726-1', '1/28/2018', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '013865576-6', '1/23/2016', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '519402092-9', '7/31/2020', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '458168893-0', '2/22/2023', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '505887149-1', '7/4/2020', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '156191629-3', '3/13/2018', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '629695334-8', '10/5/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '988130240-4', '3/12/2020', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '640433459-3', '5/20/2016', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '371193904-X', '3/22/2017', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '236895941-6', '12/13/2018', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '246605109-5', '9/6/2018', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '614868968-5', '6/19/2016', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '230887291-8', '7/2/2015', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '245595114-6', '9/14/2022', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '191051861-1', '9/10/2019', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '329586720-8', '10/5/2014', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '742764479-4', '12/5/2022', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '045929597-7', '10/27/2019', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '957661354-X', '7/2/2022', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '772246383-5', '9/18/2020', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '332910252-7', '3/15/2017', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '917446604-6', '11/18/2020', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '187136743-3', '6/25/2017', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '399872830-9', '11/18/2018', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '672423673-8', '4/22/2019', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '168448662-9', '8/7/2019', 'Horror', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '473929260-2', '4/1/2022', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '848311423-2', '4/18/2019', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '213365507-7', '11/16/2019', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '789412342-0', '7/15/2016', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '192351510-1', '11/21/2016', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '075428627-4', '5/11/2021', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '164650208-6', '5/27/2017', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '746673130-9', '10/17/2017', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '863110004-8', '10/18/2015', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '596031452-5', '2/9/2023', 'Horror', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '469553188-7', '11/23/2021', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '890178665-6', '11/29/2022', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '003268855-5', '3/4/2020', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '407970208-6', '10/11/2018', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '857012107-5', '9/22/2020', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '969414950-9', '7/14/2018', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '650481209-8', '8/13/2021', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '619969833-9', '8/26/2015', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '032751150-8', '6/21/2015', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '610149742-9', '1/29/2022', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Michael Johnson', '489805124-3', '5/17/2022', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '937925256-0', '4/13/2022', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '215557598-X', '8/19/2015', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '939511497-5', '4/7/2015', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '276626830-8', '11/7/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '819849368-9', '7/2/2016', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '969552851-1', '2/23/2017', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '295984310-X', '9/7/2020', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '374615621-1', '10/1/2016', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '084878277-1', '11/28/2018', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '305975078-5', '6/26/2019', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '963479049-6', '5/11/2021', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '541667015-0', '9/7/2021', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '543498638-5', '6/16/2016', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '905565146-X', '7/15/2017', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '122170379-X', '10/2/2014', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '507577559-4', '9/13/2015', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '268594661-6', '8/7/2015', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '127751244-2', '4/22/2021', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '597876730-0', '7/24/2017', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '428654660-8', '10/9/2019', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '607193437-0', '12/1/2015', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '241273487-9', '12/10/2022', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '093519809-1', '6/21/2015', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '654666700-2', '12/9/2015', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '753566247-1', '6/20/2021', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '001824812-8', '12/12/2022', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '374552359-8', '11/20/2017', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '040847017-8', '3/30/2021', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '713818126-4', '1/7/2015', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '898583553-X', '4/21/2015', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '450851978-4', '12/12/2020', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '302801935-3', '8/25/2021', 'Fantasy', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '122526206-2', '4/15/2016', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '706625928-9', '10/3/2021', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '993972877-8', '3/2/2023', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '180322608-0', '12/18/2018', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '073196727-5', '1/29/2016', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '748988526-4', '11/14/2018', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '304665604-1', '7/5/2016', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '699586315-1', '4/11/2017', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '022988025-8', '8/21/2021', 'Biography', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '458950190-2', '11/16/2017', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '975224041-0', '2/21/2018', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '399148272-X', '3/22/2022', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '338476756-X', '6/28/2017', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '546113867-5', '2/25/2018', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '098496811-3', '11/3/2014', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '089327441-0', '3/27/2019', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '346679478-1', '12/25/2020', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '989978483-4', '7/5/2016', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '468291451-0', '10/7/2022', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '428944811-9', '5/8/2015', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '101298791-4', '11/25/2022', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '206243327-1', '7/19/2021', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '107156278-9', '7/16/2015', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '807806870-0', '8/20/2020', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '671923174-X', '7/15/2016', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Robert Anderson', '455249438-4', '2/27/2019', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '562873881-6', '3/25/2015', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '986654233-5', '4/2/2017', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '743889784-2', '8/25/2015', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '026078733-7', '11/3/2015', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '404087929-5', '10/16/2014', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Robert Anderson', '505710105-6', '1/2/2021', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '270257876-4', '11/3/2020', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '686414744-4', '5/21/2019', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '034085446-4', '1/1/2017', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '461098058-4', '8/28/2019', 'Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '320731952-1', '11/16/2020', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '466749448-4', '7/26/2015', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '841270517-3', '12/7/2021', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '145609467-X', '8/23/2018', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '065763543-X', '9/1/2014', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '351254983-7', '1/2/2016', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '897284568-X', '9/10/2020', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '896293903-7', '6/2/2017', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '294818726-5', '10/13/2016', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '419062611-2', '10/15/2015', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '411181728-9', '9/3/2022', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '845640673-2', '1/19/2018', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '733001127-4', '12/31/2018', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '216447506-2', '4/10/2023', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '633520363-4', '3/5/2019', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '446269348-5', '2/16/2017', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '068479075-0', '1/5/2015', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '170780903-8', '11/19/2017', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '162082813-8', '6/17/2017', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '251274555-4', '1/20/2017', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '739897204-0', '12/9/2021', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '249170792-6', '2/28/2015', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '254695478-4', '4/5/2019', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '509489282-7', '4/26/2017', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '846125695-6', '5/17/2020', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '123006368-4', '4/23/2020', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '884144789-3', '12/18/2022', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '176261726-9', '4/8/2016', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '716138950-X', '12/3/2021', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '965423798-9', '5/17/2020', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '593610509-1', '8/30/2020', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '552449394-9', '8/19/2021', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '001592289-8', '10/12/2020', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '323346048-1', '3/23/2022', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '336966315-5', '1/25/2020', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '039092592-6', '7/31/2022', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '813866107-0', '3/6/2023', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '950034464-5', '8/6/2017', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '513554545-X', '11/21/2019', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '459601464-7', '8/2/2014', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '996107862-4', '6/2/2014', 'Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '110747728-X', '12/31/2019', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '587552254-2', '11/30/2021', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '696481991-6', '8/11/2018', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '177173662-3', '9/23/2016', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '286384381-8', '3/31/2018', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '113393721-7', '5/12/2020', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '071110978-8', '10/8/2019', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '343143767-2', '7/27/2021', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '833377499-7', '1/27/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '632905656-0', '2/4/2022', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '948103215-9', '11/15/2019', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '357334668-5', '7/22/2019', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '336019752-6', '11/25/2017', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'David Wilson', '827220580-7', '9/17/2020', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '024250550-3', '2/23/2017', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '951811114-6', '5/18/2021', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '427455632-8', '10/25/2022', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '953930338-9', '5/3/2014', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '595981112-X', '5/13/2021', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '079426095-0', '3/16/2018', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '432294785-9', '3/10/2022', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '653633683-6', '2/2/2018', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '432264519-4', '10/3/2016', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '234494589-X', '6/18/2021', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '390058898-8', '3/18/2020', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '744571420-0', '10/20/2014', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Amanda Garcia', '262758143-0', '3/28/2023', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '120983942-3', '2/8/2015', 'Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '701313003-6', '1/15/2023', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '339642217-1', '7/14/2016', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '506122903-7', '10/1/2015', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '489238103-9', '5/24/2014', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '753143027-4', '12/13/2019', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '425894302-9', '8/31/2021', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '192302514-7', '12/4/2015', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Amanda Garcia', '263851397-0', '1/5/2023', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '542969590-4', '11/9/2021', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Emily Brown', '290832356-7', '6/14/2021', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '234257730-3', '10/9/2015', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '879002831-7', '9/28/2014', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '050717330-9', '3/28/2016', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '718677591-8', '6/16/2022', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '252208207-8', '4/1/2020', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Amanda Garcia', '165291648-2', '5/5/2016', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '901666729-6', '6/11/2020', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '270972123-6', '11/22/2018', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '249067405-6', '3/11/2022', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '414075699-3', '9/28/2014', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '997821744-4', '1/21/2017', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '528566282-6', '12/31/2014', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '789152358-4', '8/31/2020', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '256381128-7', '5/26/2016', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '339046892-7', '1/15/2021', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '247315498-8', '5/26/2021', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '725460616-0', '9/20/2014', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '303537336-1', '8/14/2017', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '810719742-9', '8/7/2021', 'Biography', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '452216696-6', '1/30/2017', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '459953770-5', '5/11/2019', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '868595283-2', '12/18/2014', 'Non-Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '056753735-8', '6/24/2022', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '179386766-6', '11/12/2022', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '134742156-4', '5/27/2018', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '952833151-3', '7/27/2022', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '958950501-5', '5/26/2016', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '437066874-3', '4/30/2016', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '685876741-X', '6/20/2018', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '427241352-X', '6/14/2018', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '278935275-5', '12/12/2019', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '620242930-5', '3/8/2015', 'Romance', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '899919548-1', '4/27/2020', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '969132444-X', '9/11/2014', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '669001466-5', '6/6/2020', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '095323245-X', '6/6/2015', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '332337658-7', '10/20/2015', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '760533533-4', '4/19/2014', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '266823388-7', '12/24/2022', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '740328203-5', '6/5/2018', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '722998824-1', '4/27/2019', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '795697161-6', '6/5/2014', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '450291728-1', '3/3/2016', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '296619527-4', '8/7/2014', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '581715245-2', '2/11/2021', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Robert Anderson', '370368512-3', '10/28/2017', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '249421211-1', '11/5/2022', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '617261624-2', '9/4/2014', 'Fantasy', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '125116852-3', '11/17/2019', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '933650181-X', '4/28/2016', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '772010011-5', '12/29/2022', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '030620341-3', '9/2/2018', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '011145311-9', '5/12/2017', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '763711098-2', '12/27/2018', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '489337128-2', '12/13/2018', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '591402740-3', '6/30/2019', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '866197212-4', '2/13/2017', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '529956672-7', '7/10/2018', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '883333380-9', '5/23/2020', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '196526397-6', '4/30/2018', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '408265524-7', '4/25/2015', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '480103459-4', '10/7/2017', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '231876939-7', '1/28/2017', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '948983269-3', '2/2/2016', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '276402769-9', '2/14/2022', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '993797671-5', '10/21/2018', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '381608311-0', '9/8/2021', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '589648293-0', '1/13/2020', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '301389191-2', '8/30/2016', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '810124869-2', '7/10/2016', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '611333129-6', '12/30/2020', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '378333046-7', '8/12/2018', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '766608272-X', '9/28/2016', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '091862531-9', '7/30/2014', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '741838438-6', '4/30/2016', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '884196713-7', '3/28/2016', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '882094359-X', '3/1/2021', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '185332805-7', '10/8/2020', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '498349496-0', '11/23/2022', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '517626940-6', '8/17/2018', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '171337112-X', '9/6/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '714403446-4', '2/27/2015', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '101603550-0', '11/10/2016', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '560750757-2', '6/16/2017', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '039458969-6', '12/9/2019', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '984795517-4', '1/29/2023', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '440267156-6', '4/4/2018', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '175829059-5', '2/27/2022', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'William Thomas', '819888006-2', '1/25/2021', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '328480495-1', '2/9/2020', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '649995622-8', '1/14/2015', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '420325199-0', '12/23/2021', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '338211278-7', '10/6/2017', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '314523050-6', '3/16/2015', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '370904256-9', '1/2/2022', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Michael Johnson', '423407990-1', '1/18/2020', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '891123726-4', '5/10/2016', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '090518920-5', '12/30/2022', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '864287972-6', '11/1/2021', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '525918981-7', '5/2/2017', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '717528222-2', '1/22/2018', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '907787825-4', '11/26/2019', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '653151609-7', '6/10/2021', 'Biography', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '797288425-0', '6/25/2015', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '771555295-X', '1/7/2019', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '833523920-7', '7/7/2016', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '349309767-0', '2/20/2016', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '638394465-7', '7/10/2015', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '052057426-5', '6/13/2019', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '717802602-2', '11/30/2017', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '581311521-8', '8/16/2021', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '627388666-0', '8/3/2015', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '915898262-0', '5/17/2018', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '082862786-X', '10/7/2019', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '030666847-5', '5/1/2019', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '026498200-2', '2/15/2016', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '123177443-6', '7/22/2020', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '588541043-7', '11/1/2017', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '072334484-1', '5/21/2021', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '958219122-8', '6/18/2015', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '785502784-X', '12/26/2016', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '861381582-0', '9/12/2019', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '170158618-5', '9/18/2016', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '398761147-2', '8/11/2015', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '060906173-9', '6/21/2016', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '925537000-6', '8/6/2019', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '312147433-2', '11/10/2019', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '015192961-0', '5/29/2022', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Michael Johnson', '686771091-3', '11/29/2022', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '156060824-2', '12/27/2017', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '771533888-5', '1/10/2023', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '678493060-6', '1/20/2020', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '383543791-7', '7/25/2014', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '792756998-8', '5/4/2022', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '822219196-9', '11/24/2018', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '246109826-3', '8/21/2022', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '005637496-8', '3/26/2015', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '944117419-X', '7/1/2021', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '763108859-4', '9/14/2020', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '841686920-0', '1/8/2020', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '583980534-3', '11/18/2014', 'Horror', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '136526328-2', '11/4/2019', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '303539299-4', '6/3/2019', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '339044179-4', '5/31/2020', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '251343499-4', '12/30/2017', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '028108736-9', '9/1/2014', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '558014431-8', '1/24/2019', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '061416172-X', '9/12/2015', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '905858518-2', '4/12/2023', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Michael Johnson', '216821863-3', '3/31/2018', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '058873041-6', '12/16/2018', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '910675724-3', '7/28/2014', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '722853605-3', '2/27/2018', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '488595803-2', '1/14/2019', 'Thriller', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '145368744-0', '7/20/2015', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '558064288-1', '8/29/2014', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'William Thomas', '448523211-5', '10/7/2016', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '402522587-5', '6/3/2016', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '377384455-7', '10/14/2016', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '810712358-1', '11/23/2022', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '501965939-8', '10/27/2016', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '370803563-1', '5/12/2020', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '254810182-7', '6/22/2020', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '669327703-9', '11/16/2019', 'Romance', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '223420221-3', '9/1/2016', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '878215118-0', '5/3/2021', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '986883282-9', '6/1/2019', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '205791741-X', '8/16/2019', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '152456676-4', '6/6/2021', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '315473126-1', '2/17/2018', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '087254609-8', '4/19/2017', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '528183190-9', '7/16/2020', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '155992857-3', '7/3/2014', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '292151324-2', '8/4/2016', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '471735267-X', '6/4/2022', 'Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '776863967-7', '2/12/2022', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '762774067-3', '1/31/2023', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '661063575-7', '2/22/2018', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '540443666-2', '2/13/2019', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '078358416-4', '6/29/2019', 'Horror', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '174679474-7', '6/14/2017', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '232241224-4', '3/17/2015', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '945731097-7', '6/1/2020', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '228279386-2', '1/11/2019', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '870170779-5', '10/31/2016', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '293958823-6', '3/13/2023', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '394907126-1', '7/1/2016', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '039158150-3', '2/16/2015', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '674217365-3', '11/21/2015', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '120364045-5', '5/13/2018', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '772637644-9', '3/16/2017', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '448761263-2', '11/7/2020', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '927131710-6', '10/12/2022', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '659464349-5', '9/14/2021', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '997062103-3', '11/18/2018', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '241461718-7', '2/18/2020', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '148558265-2', '3/9/2018', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '406113199-0', '7/7/2020', 'Historical Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Sarah Davis', '583163064-1', '4/15/2020', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '173526992-1', '4/17/2021', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '101805147-3', '7/6/2022', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '806371602-7', '12/31/2017', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Robert Anderson', '554765879-0', '5/10/2021', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '370077419-2', '12/30/2014', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'David Wilson', '515782832-2', '10/31/2016', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '164819381-1', '2/25/2015', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '564907523-9', '1/26/2023', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '751833053-9', '4/30/2019', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '606199966-6', '3/12/2016', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'William Thomas', '756198001-9', '9/7/2015', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '379572214-4', '12/26/2022', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'David Wilson', '670238630-3', '5/20/2016', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '004267458-1', '6/1/2015', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '535996379-4', '10/3/2018', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '248385101-0', '6/16/2016', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Robert Anderson', '762883870-7', '7/13/2018', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '858465508-5', '6/15/2017', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '341240079-3', '10/25/2022', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '493963672-0', '4/17/2015', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '223005082-6', '3/22/2016', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '798828985-3', '4/20/2015', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '009385197-9', '12/20/2015', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '085783201-8', '1/31/2019', 'Thriller', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '685528723-9', '12/12/2016', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '667842730-0', '12/7/2015', 'Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'John Smith', '326546830-5', '6/21/2015', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '679604094-5', '8/10/2022', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '609947424-2', '5/6/2016', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '134962678-3', '9/18/2019', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '406563760-0', '5/16/2018', 'Historical Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '018159709-8', '8/23/2017', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '068642284-8', '3/29/2015', 'Romance', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '530779346-4', '5/21/2015', 'Science Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '653900159-2', '12/3/2014', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '059210880-5', '9/26/2015', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '406011370-0', '2/11/2017', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '299527473-X', '7/22/2014', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '822909885-9', '10/30/2014', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jessica Martinez', '026820550-7', '1/17/2019', 'Fantasy', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '375889400-X', '4/5/2020', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '543958023-9', '8/29/2019', 'Biography', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '426943346-9', '4/2/2016', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '212959468-9', '7/10/2021', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '226145051-6', '1/10/2020', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '002079282-4', '9/16/2021', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '025551326-7', '6/8/2020', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Robert Anderson', '204666191-5', '8/1/2018', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Robert Anderson', '956811305-3', '3/20/2021', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '578367724-8', '1/31/2023', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '778319405-2', '4/16/2016', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '603970981-2', '8/14/2015', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '144602170-X', '7/2/2017', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '043117108-4', '4/11/2021', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '754545881-8', '4/23/2016', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '654616812-X', '9/3/2019', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '782497027-2', '11/15/2015', 'Horror', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jennifer Taylor', '905302620-7', '7/27/2019', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '277795445-3', '12/11/2019', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '521668688-6', '5/14/2018', 'Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Sarah Davis', '847522626-4', '2/12/2023', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jessica Martinez', '026289291-X', '7/24/2017', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '759698405-3', '4/22/2017', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Sarah Davis', '434320345-X', '8/25/2018', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jessica Martinez', '959429446-9', '3/13/2018', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '722221270-1', '7/14/2016', 'Non-Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '017913408-6', '8/20/2020', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '130617646-8', '8/30/2021', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '364801792-6', '4/12/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '360351385-1', '9/27/2014', 'Thriller', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '198025085-5', '11/29/2016', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Sarah Davis', '232641261-3', '11/22/2018', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '703333004-9', '5/27/2016', 'Horror', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '063099476-5', '2/19/2022', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '240296863-X', '2/19/2022', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '939239888-3', '11/8/2015', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '625741803-8', '4/21/2020', 'Romance', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '761438880-1', '4/28/2019', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '383988522-1', '4/8/2020', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '574878252-9', '3/17/2017', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '364492491-0', '3/14/2022', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '354813530-7', '3/5/2022', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'David Wilson', '011259498-0', '7/29/2019', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Jessica Martinez', '029160079-4', '6/2/2021', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '508005005-5', '6/17/2021', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '617296093-8', '8/1/2020', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '008228122-X', '3/23/2019', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'William Thomas', '147649060-0', '10/20/2017', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '058991518-5', '4/11/2016', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '654950940-8', '8/21/2019', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '041662186-4', '4/10/2018', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '795384305-6', '10/30/2020', 'Fantasy', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '161286931-9', '2/27/2017', 'Fantasy', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '537335569-0', '10/5/2014', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'David Wilson', '137932172-7', '3/22/2015', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'William Thomas', '469251809-X', '10/7/2016', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '168095966-2', '3/23/2021', 'Non-Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '256350555-0', '3/19/2020', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '614373875-0', '9/9/2022', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '106038184-2', '9/5/2019', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '300035889-7', '4/24/2016', 'Biography', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '378913369-8', '9/4/2018', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '206377006-9', '9/1/2020', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '770283735-7', '8/19/2017', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '098617399-1', '4/13/2022', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '567664115-0', '11/8/2016', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '573485496-4', '10/8/2021', 'Biography', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jennifer Taylor', '546052409-1', '3/4/2016', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '926560051-9', '5/24/2021', 'Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Michael Johnson', '562193203-X', '10/19/2016', 'Mystery', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '484286133-9', '1/29/2015', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '624955866-7', '2/2/2020', 'Fantasy', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '011829730-9', '12/20/2020', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '106092560-5', '8/16/2015', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Emily Brown', '944621854-3', '12/5/2016', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '668323519-8', '7/1/2017', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '662105998-1', '9/4/2016', 'Biography', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'David Wilson', '910850236-6', '10/18/2015', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Michael Johnson', '736779536-8', '5/17/2016', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jessica Martinez', '124505576-3', '8/30/2017', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '664747901-5', '8/13/2018', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '163249126-5', '6/24/2019', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jennifer Taylor', '102289126-X', '10/26/2014', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Amanda Garcia', '048121161-6', '7/28/2020', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '375425981-4', '10/18/2021', 'Historical Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Jennifer Taylor', '715481967-7', '1/24/2018', 'Non-Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Amanda Garcia', '369586004-9', '10/8/2021', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '241128115-3', '9/7/2015', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Michael Johnson', '702909590-1', '3/12/2017', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Michael Johnson', '695023861-4', '8/15/2022', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '849356999-2', '1/15/2022', 'Non-Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '718585517-9', '8/4/2018', 'Romance', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '464987229-4', '4/11/2023', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '266963642-X', '8/27/2021', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'William Thomas', '401121680-1', '11/9/2019', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jennifer Taylor', '408211609-5', '1/23/2019', 'Fantasy', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '303081591-9', '10/4/2021', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '093092786-9', '9/12/2017', 'Biography', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'David Wilson', '276652545-9', '2/6/2015', 'Science Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Sarah Davis', '200716141-9', '2/10/2017', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Michael Johnson', '660515731-1', '9/23/2022', 'Science Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '032065391-9', '6/19/2017', 'Romance', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '101255359-0', '3/27/2015', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Amanda Garcia', '686699463-2', '4/8/2016', 'Mystery', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '178063083-2', '8/26/2018', 'Thriller', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Emily Brown', '795242931-0', '11/27/2022', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jennifer Taylor', '847783112-2', '4/5/2021', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Robert Anderson', '816142597-3', '9/16/2017', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '265593980-8', '6/20/2017', 'Historical Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Robert Anderson', '260753972-2', '1/1/2023', 'Science Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '920256531-7', '3/19/2020', 'Science Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '079182165-X', '5/21/2015', 'Science Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Robert Anderson', '265348564-8', '12/7/2019', 'Thriller', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Robert Anderson', '879003283-7', '1/22/2023', 'Historical Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Amanda Garcia', '062929734-7', '8/8/2015', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Jessica Martinez', '363841880-4', '10/1/2022', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '179837394-7', '2/4/2022', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '439410714-8', '7/26/2017', 'Mystery', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Robert Anderson', '048704424-X', '11/29/2014', 'Mystery', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'John Smith', '592600026-2', '8/4/2014', 'Romance', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '100988066-7', '1/8/2017', 'Mystery', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '198850770-7', '1/20/2017', 'Biography', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jennifer Taylor', '611489023-X', '5/17/2014', 'Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Amanda Garcia', '119517246-X', '2/12/2023', 'Mystery', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'John Smith', '613272453-2', '3/15/2018', 'Biography', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Amanda Garcia', '148733463-X', '2/9/2016', 'Horror', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Michael Johnson', '532780444-5', '5/5/2022', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Emily Brown', '024112521-9', '9/23/2017', 'Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'John Smith', '144211610-2', '4/17/2015', 'Historical Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Jennifer Taylor', '189098713-1', '4/19/2019', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'William Thomas', '012078183-2', '9/24/2019', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Amanda Garcia', '358589353-8', '8/2/2021', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '508333452-6', '9/20/2016', 'Non-Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'William Thomas', '425028492-1', '3/29/2015', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Jessica Martinez', '154485567-2', '3/17/2016', 'Horror', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '249726050-8', '8/26/2015', 'Non-Fiction', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '239444881-4', '10/12/2015', 'Historical Fiction', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Sarah Davis', '753104943-0', '5/16/2016', 'Science Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '380783747-7', '2/2/2020', 'Romance', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Sarah Davis', '178200670-2', '10/8/2017', 'Thriller', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Emily Brown', '770703576-3', '10/26/2021', 'Science Fiction', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'William Thomas', '770436548-7', '10/26/2017', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Amanda Garcia', '873689547-4', '6/20/2020', 'Fantasy', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'John Smith', '621744242-6', '1/23/2021', 'Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'Emily Brown', '499204375-5', '9/17/2022', 'Historical Fiction', 'D2', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Sarah Davis', '112734031-X', '6/2/2020', 'Horror', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '130022967-5', '6/6/2014', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '701369771-0', '10/24/2014', 'Mystery', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Emily Brown', '467935952-8', '11/20/2016', 'Mystery', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '796660039-4', '10/6/2020', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Jennifer Taylor', '266024292-5', '2/2/2020', 'Non-Fiction', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Emily Brown', '229290347-4', '1/10/2023', 'Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Harry Potter and the Sorcerer''s Stone', 'Amanda Garcia', '629629717-3', '9/8/2015', 'Horror', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '382064822-4', '3/10/2021', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '778899965-2', '5/13/2015', 'Fantasy', 'A1', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '292477823-9', '8/3/2020', 'Non-Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'John Smith', '508439734-3', '2/11/2022', 'Biography', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Sarah Davis', '530929436-8', '8/9/2019', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Robert Anderson', '574542024-3', '3/12/2023', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '306769530-5', '8/3/2018', 'Romance', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('1984', 'Michael Johnson', '743816438-1', '5/6/2020', 'Horror', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'John Smith', '592923201-6', '8/30/2018', 'Romance', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'William Thomas', '793922406-9', '5/27/2020', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'David Wilson', '622739262-6', '4/7/2016', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'John Smith', '507226921-3', '2/26/2015', 'Mystery', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Great Gatsby', 'David Wilson', '321041863-2', '7/18/2017', 'Science Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Amanda Garcia', '214461043-6', '4/5/2023', 'Thriller', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Emily Brown', '859226373-5', '10/1/2017', 'Thriller', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Catcher in the Rye', 'Robert Anderson', '629626187-X', '4/26/2019', 'Fantasy', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '168512874-2', '11/21/2022', 'Historical Fiction', 'E4', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'David Wilson', '717308416-4', '11/20/2021', 'Fiction', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Lord of the Rings', 'Sarah Davis', '548780696-9', '6/12/2014', 'Historical Fiction', 'E4', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Jessica Martinez', '232221164-8', '11/25/2020', 'Science Fiction', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('To Kill a Mockingbird', 'Jennifer Taylor', '472793592-9', '2/2/2017', 'Fantasy', 'C5', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'Jessica Martinez', '613885789-5', '2/16/2020', 'Non-Fiction', 'B3', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'John Smith', '916893296-0', '8/2/2019', 'Thriller', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Moby Dick', 'Emily Brown', '165030757-8', '10/4/2022', 'Fantasy', 'A1', 'Borrowed'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('Pride and Prejudice', 'Michael Johnson', '110020641-8', '9/20/2022', 'Thriller', 'C5', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Hunger Games', 'John Smith', '770695736-5', '9/11/2016', 'Mystery', 'D2', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Jessica Martinez', '649410845-8', '11/16/2022', 'Biography', 'B3', 'Available'); +insert into Books (title, author, isbn, publishedDate, genre, shelfLocation, currentStatus) values ('The Da Vinci Code', 'Robert Anderson', '536817912-X', '4/25/2014', 'Biography', 'D2', 'Borrowed'); diff --git a/seeding/borrowersTableSeeding-DML.sql b/seeding/borrowersTableSeeding-DML.sql new file mode 100644 index 0000000..c620210 --- /dev/null +++ b/seeding/borrowersTableSeeding-DML.sql @@ -0,0 +1,1000 @@ +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zechariah', 'Menault', 'zmenault0@samsung.com', '9/19/1979', '3/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arlana', 'Asaaf', 'aasaaf1@oaic.gov.au', '6/6/1952', '11/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Isac', 'Dalziell', 'idalziell2@blogspot.com', '12/30/1989', '4/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Neville', 'Russon', 'nrusson3@ezinearticles.com', '8/28/1948', '2/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kennie', 'Gibb', 'kgibb4@shinystat.com', '5/30/1956', '4/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zared', 'Thame', 'zthame5@friendfeed.com', '6/1/1980', '6/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eileen', 'Josskovitz', 'ejosskovitz6@answers.com', '2/7/1955', '7/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joletta', 'Eayres', 'jeayres7@stanford.edu', '8/14/1996', '2/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Thacher', 'Brunton', 'tbrunton8@naver.com', '8/30/1982', '11/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jodi', 'Boleyn', 'jboleyn9@oakley.com', '12/28/1972', '8/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mathew', 'Romaines', 'mromainesa@thetimes.co.uk', '11/6/2004', '2/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kary', 'Dziwisz', 'kdziwiszb@nifty.com', '3/27/1946', '7/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ganny', 'Pirot', 'gpirotc@gov.uk', '10/15/1947', '12/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Whitney', 'Lyston', 'wlystond@dedecms.com', '3/25/1966', '4/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rodolphe', 'Chaffen', 'rchaffene@sciencedirect.com', '2/7/1946', '7/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorrie', 'Laverock', 'llaverockf@soup.io', '4/21/1988', '1/16/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Annaliese', 'Taborre', 'ataborreg@wiley.com', '4/2/2007', '8/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sadye', 'Jancso', 'sjancsoh@house.gov', '4/24/1979', '11/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Devan', 'Longridge', 'dlongridgei@japanpost.jp', '6/13/1987', '1/1/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Junie', 'Cordon', 'jcordonj@amazon.com', '4/5/1955', '11/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kimberlyn', 'Phillimore', 'kphillimorek@sbwire.com', '6/5/1983', '8/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ellswerth', 'Castelluzzi', 'ecastelluzzil@apple.com', '3/9/2010', '2/1/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nap', 'Hounsom', 'nhounsomm@yahoo.com', '6/20/1997', '8/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shannah', 'Shipperbottom', 'sshipperbottomn@gov.uk', '5/2/2008', '9/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frederico', 'Trouel', 'ftrouelo@twitpic.com', '11/29/1993', '8/8/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lezley', 'Hamberstone', 'lhamberstonep@exblog.jp', '12/10/1984', '7/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Theresa', 'Cello', 'tcelloq@cyberchimps.com', '9/2/1950', '10/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tallie', 'Denisot', 'tdenisotr@nydailynews.com', '9/2/1963', '3/31/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mitchell', 'Hatch', 'mhatchs@over-blog.com', '5/16/1965', '11/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rebecca', 'Lande', 'rlandet@cargocollective.com', '9/9/1977', '6/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Massimo', 'Condie', 'mcondieu@google.de', '11/6/1949', '6/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ogden', 'Caveau', 'ocaveauv@cdc.gov', '4/25/1983', '5/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jaquelin', 'Easom', 'jeasomw@apache.org', '12/12/1999', '10/16/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorenzo', 'Cundict', 'lcundictx@altervista.org', '11/27/1989', '7/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karissa', 'Kerswell', 'kkerswelly@economist.com', '9/14/1986', '3/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cornie', 'Rignold', 'crignoldz@ocn.ne.jp', '2/20/1962', '10/31/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Berthe', 'Kelf', 'bkelf10@virginia.edu', '8/19/1972', '4/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Krisha', 'Trevaskis', 'ktrevaskis11@histats.com', '5/3/1997', '11/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rube', 'Harmond', 'rharmond12@google.co.jp', '2/23/1966', '11/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mercedes', 'Pavlata', 'mpavlata13@smugmug.com', '12/12/1989', '2/24/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alwin', 'Bickford', 'abickford14@kickstarter.com', '1/3/1978', '3/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fredric', 'Asken', 'fasken15@dailymotion.com', '5/7/2000', '7/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bridgette', 'Ortler', 'bortler16@barnesandnoble.com', '2/4/1967', '3/26/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nedda', 'Gallehock', 'ngallehock17@biblegateway.com', '8/17/1959', '10/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tonye', 'Game', 'tgame18@yale.edu', '9/29/1998', '3/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arvin', 'Sorley', 'asorley19@yale.edu', '3/17/1969', '6/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sig', 'Alderman', 'salderman1a@imdb.com', '11/6/1994', '9/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Margareta', 'Kroch', 'mkroch1b@issuu.com', '5/1/1945', '8/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hammad', 'Chaloner', 'hchaloner1c@sciencedaily.com', '7/7/1980', '11/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leeann', 'Borell', 'lborell1d@go.com', '4/8/1952', '12/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wylie', 'Hubber', 'whubber1e@reference.com', '7/25/2003', '11/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sandie', 'Mathie', 'smathie1f@state.gov', '6/12/1989', '6/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marcia', 'Chisnall', 'mchisnall1g@hhs.gov', '8/14/1989', '11/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bevvy', 'Erdes', 'berdes1h@mail.ru', '9/22/1996', '6/3/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karilynn', 'Lambshine', 'klambshine1i@answers.com', '1/6/1976', '1/14/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ginger', 'Nabarro', 'gnabarro1j@google.nl', '5/1/1944', '1/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Parrnell', 'Gonzalez', 'pgonzalez1k@infoseek.co.jp', '10/13/1978', '1/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Margarete', 'Eshmade', 'meshmade1l@tamu.edu', '8/6/1962', '1/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Conway', 'O''Lenane', 'colenane1m@themeforest.net', '7/28/1950', '12/8/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Uriah', 'Harvison', 'uharvison1n@seattletimes.com', '10/17/1967', '4/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Katalin', 'Schwandner', 'kschwandner1o@yandex.ru', '12/14/1971', '5/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Salvidor', 'Standall', 'sstandall1p@domainmarket.com', '1/30/1964', '12/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Riobard', 'Scyone', 'rscyone1q@skype.com', '2/22/1995', '5/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cullie', 'Hazart', 'chazart1r@github.com', '10/13/1992', '4/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wesley', 'Razzell', 'wrazzell1s@com.com', '4/18/1969', '5/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Emilee', 'Parkyns', 'eparkyns1t@instagram.com', '1/12/1959', '11/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rey', 'Schollick', 'rschollick1u@buzzfeed.com', '12/9/1983', '4/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frederik', 'Prazor', 'fprazor1v@noaa.gov', '1/12/1956', '5/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Putnem', 'Eplate', 'peplate1w@noaa.gov', '3/16/1996', '7/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kay', 'Openshaw', 'kopenshaw1x@omniture.com', '5/22/1976', '11/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jude', 'McGragh', 'jmcgragh1y@qq.com', '8/6/1950', '6/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Florian', 'Woolcocks', 'fwoolcocks1z@alibaba.com', '12/7/1952', '7/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('L;urette', 'Troctor', 'ltroctor20@newyorker.com', '3/2/1965', '9/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Juana', 'Wellwood', 'jwellwood21@acquirethisname.com', '8/15/1952', '12/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sally', 'Scottrell', 'sscottrell22@ebay.com', '4/25/1972', '8/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alexio', 'Rosini', 'arosini23@e-recht24.de', '8/30/1989', '10/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gerta', 'Cadney', 'gcadney24@amazon.co.jp', '1/4/1965', '2/5/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marinna', 'Flewett', 'mflewett25@toplist.cz', '7/31/2001', '5/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lark', 'Eouzan', 'leouzan26@jugem.jp', '4/19/1990', '7/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Boy', 'Slate', 'bslate27@walmart.com', '1/13/1943', '4/5/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Salim', 'Dunseath', 'sdunseath28@amazon.co.jp', '2/16/2004', '4/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zabrina', 'Snap', 'zsnap29@archive.org', '1/8/2010', '1/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fitzgerald', 'Milier', 'fmilier2a@github.io', '11/20/1957', '11/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Webster', 'Thouless', 'wthouless2b@canalblog.com', '6/28/1991', '12/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Goldarina', 'Sayers', 'gsayers2c@weebly.com', '2/25/1943', '7/12/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Page', 'Bru', 'pbru2d@w3.org', '5/8/2007', '4/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Agnes', 'Dabourne', 'adabourne2e@wikia.com', '5/11/1944', '10/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Olimpia', 'Giamuzzo', 'ogiamuzzo2f@alibaba.com', '6/21/2001', '4/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Florian', 'Rosini', 'frosini2g@usa.gov', '5/12/2005', '7/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leann', 'Coopman', 'lcoopman2h@altervista.org', '11/7/1987', '9/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lindi', 'MacDougal', 'lmacdougal2i@stumbleupon.com', '12/20/2008', '9/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kelly', 'Woodcock', 'kwoodcock2j@xrea.com', '8/21/1965', '5/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hunter', 'Zoane', 'hzoane2k@ibm.com', '12/13/1940', '8/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Michelle', 'Stable', 'mstable2l@independent.co.uk', '7/28/1974', '5/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Phebe', 'Haquin', 'phaquin2m@shinystat.com', '11/1/1998', '12/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karla', 'Cirlos', 'kcirlos2n@hatena.ne.jp', '7/4/1941', '7/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kassia', 'Matityahu', 'kmatityahu2o@elpais.com', '5/10/1997', '2/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anne', 'Klauber', 'aklauber2p@go.com', '1/24/1978', '7/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Crystal', 'Smitham', 'csmitham2q@ehow.com', '6/14/1948', '7/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mattie', 'McHarry', 'mmcharry2r@economist.com', '8/1/2004', '7/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ezequiel', 'Hurren', 'ehurren2s@walmart.com', '11/5/1955', '11/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Odie', 'Petts', 'opetts2t@cnbc.com', '6/11/1944', '2/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Holt', 'Pedrol', 'hpedrol2u@pcworld.com', '2/25/1992', '1/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gustaf', 'Gaitone', 'ggaitone2v@nhs.uk', '8/19/1965', '2/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carri', 'Neylan', 'cneylan2w@homestead.com', '10/27/1973', '4/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Riley', 'McIlvaney', 'rmcilvaney2x@last.fm', '12/30/1953', '7/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Petunia', 'Quinnet', 'pquinnet2y@jigsy.com', '6/26/1959', '2/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marie-jeanne', 'Berkery', 'mberkery2z@surveymonkey.com', '11/29/1977', '9/7/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hedwig', 'Minshull', 'hminshull30@businessinsider.com', '11/15/1976', '4/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zelig', 'Rousby', 'zrousby31@mediafire.com', '11/8/2001', '12/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Homere', 'Bosden', 'hbosden32@yahoo.com', '7/12/2008', '1/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rockey', 'Cardiff', 'rcardiff33@theglobeandmail.com', '12/25/1948', '6/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Raye', 'Pauer', 'rpauer34@mozilla.org', '1/14/1994', '11/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frederique', 'Belliard', 'fbelliard35@digg.com', '12/4/1945', '5/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeanelle', 'Sweetzer', 'jsweetzer36@adobe.com', '10/10/2002', '4/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Glenn', 'Greatham', 'ggreatham37@multiply.com', '11/28/2006', '10/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wade', 'Naden', 'wnaden38@si.edu', '2/14/1975', '5/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Egan', 'Jebb', 'ejebb39@prweb.com', '1/17/1950', '11/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Barn', 'Bosma', 'bbosma3a@multiply.com', '11/21/1955', '11/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Trace', 'Gapper', 'tgapper3b@surveymonkey.com', '2/26/1970', '1/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kala', 'Baert', 'kbaert3c@infoseek.co.jp', '1/8/1964', '8/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janella', 'Rizon', 'jrizon3d@dagondesign.com', '9/7/1996', '11/16/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Duky', 'Wodeland', 'dwodeland3e@omniture.com', '3/17/1981', '9/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gilberta', 'Chalker', 'gchalker3f@ucsd.edu', '12/14/1968', '1/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hew', 'Furze', 'hfurze3g@infoseek.co.jp', '1/1/2000', '10/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vania', 'Hirschmann', 'vhirschmann3h@cyberchimps.com', '7/29/1998', '10/19/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dyan', 'Mushawe', 'dmushawe3i@nymag.com', '1/29/1965', '7/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Claybourne', 'Amys', 'camys3j@oaic.gov.au', '1/6/2004', '3/18/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aggy', 'Pickerell', 'apickerell3k@ebay.co.uk', '8/24/1944', '10/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jordan', 'Seawell', 'jseawell3l@ftc.gov', '4/23/1979', '8/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Roze', 'Maulkin', 'rmaulkin3m@google.nl', '7/24/1986', '9/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anatola', 'Dunster', 'adunster3n@scientificamerican.com', '5/16/1983', '7/3/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Udale', 'Eacott', 'ueacott3o@ftc.gov', '6/17/1940', '2/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Devonne', 'Ragge', 'dragge3p@unicef.org', '1/19/2008', '9/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Boigie', 'Block', 'bblock3q@state.tx.us', '9/12/1983', '11/17/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fancie', 'Kerner', 'fkerner3r@prlog.org', '9/24/1955', '6/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hughie', 'Roscher', 'hroscher3s@lycos.com', '11/18/1997', '1/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Farr', 'Bes', 'fbes3t@over-blog.com', '10/3/1946', '2/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lou', 'O''Kennavain', 'lokennavain3u@independent.co.uk', '12/25/1980', '9/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('James', 'Viscovi', 'jviscovi3v@wikipedia.org', '9/18/1985', '5/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mirella', 'Mewe', 'mmewe3w@twitpic.com', '11/9/2003', '8/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chris', 'Winwood', 'cwinwood3x@dion.ne.jp', '5/9/1967', '1/5/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Link', 'Rosenfield', 'lrosenfield3y@pbs.org', '10/18/1963', '9/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aubry', 'Steptowe', 'asteptowe3z@ucsd.edu', '3/19/1975', '11/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dorothea', 'Foat', 'dfoat40@flickr.com', '5/19/2001', '9/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clem', 'McAndie', 'cmcandie41@nbcnews.com', '11/28/1996', '7/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Charita', 'Mungham', 'cmungham42@noaa.gov', '8/30/1959', '9/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nichole', 'Pharo', 'npharo43@moonfruit.com', '1/15/1991', '3/23/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ira', 'Branwhite', 'ibranwhite44@xing.com', '12/3/1999', '8/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Glyn', 'Clemenzi', 'gclemenzi45@cocolog-nifty.com', '1/4/1967', '9/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Edsel', 'Fockes', 'efockes46@ft.com', '8/5/1968', '9/8/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vaughan', 'Ivanishev', 'vivanishev47@networksolutions.com', '2/27/2008', '10/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alessandro', 'Antonomoli', 'aantonomoli48@stanford.edu', '1/31/2004', '5/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Banky', 'Leversuch', 'bleversuch49@washington.edu', '9/10/1945', '7/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rikki', 'Spacy', 'rspacy4a@nps.gov', '11/12/1953', '11/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Holt', 'Broadfield', 'hbroadfield4b@multiply.com', '10/24/1958', '2/10/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Crawford', 'Jesty', 'cjesty4c@amazon.co.jp', '1/21/2001', '11/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Galvan', 'McCandless', 'gmccandless4d@jiathis.com', '7/19/1944', '7/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Algernon', 'Pallant', 'apallant4e@nymag.com', '5/2/1990', '10/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reggi', 'Keat', 'rkeat4f@nsw.gov.au', '4/14/1967', '10/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chevy', 'Lackeye', 'clackeye4g@unblog.fr', '10/9/2009', '8/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ellynn', 'Medmore', 'emedmore4h@cocolog-nifty.com', '4/15/1991', '3/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lyle', 'Gergolet', 'lgergolet4i@furl.net', '2/10/1953', '4/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Roshelle', 'Tuft', 'rtuft4j@blogtalkradio.com', '8/20/1947', '4/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marlon', 'Bog', 'mbog4k@washington.edu', '11/17/1947', '11/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alli', 'Winder', 'awinder4l@ucoz.com', '5/17/2000', '2/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Patsy', 'Kinder', 'pkinder4m@adobe.com', '3/23/1949', '4/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zach', 'Acott', 'zacott4n@soup.io', '3/8/1952', '6/4/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Web', 'Goodbarne', 'wgoodbarne4o@yale.edu', '7/21/1975', '10/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Callean', 'Zapata', 'czapata4p@moonfruit.com', '5/1/1940', '6/30/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Timothee', 'Giorgeschi', 'tgiorgeschi4q@addtoany.com', '1/26/1993', '10/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Isidore', 'Woolmer', 'iwoolmer4r@liveinternet.ru', '1/18/1973', '6/17/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nessy', 'Mitskevich', 'nmitskevich4s@elegantthemes.com', '5/26/1995', '2/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Humfried', 'Jerrolt', 'hjerrolt4t@360.cn', '1/26/1941', '9/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Muriel', 'Barstow', 'mbarstow4u@walmart.com', '8/22/1956', '8/28/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Raffaello', 'Print', 'rprint4v@baidu.com', '8/28/1991', '2/27/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorrayne', 'Kezor', 'lkezor4w@nifty.com', '6/5/1953', '8/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ulrike', 'Barbosa', 'ubarbosa4x@pen.io', '9/21/1955', '1/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ellary', 'Braddick', 'ebraddick4y@g.co', '9/21/1993', '7/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Roderigo', 'Kik', 'rkik4z@tinypic.com', '3/26/1943', '10/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jacquenetta', 'Messam', 'jmessam50@jimdo.com', '4/13/1959', '2/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mateo', 'Srawley', 'msrawley51@alexa.com', '11/14/1970', '6/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Celie', 'Waring', 'cwaring52@yelp.com', '7/13/1991', '12/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Manny', 'Gravenall', 'mgravenall53@europa.eu', '12/26/1961', '5/3/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ernesta', 'Tabram', 'etabram54@mashable.com', '5/29/1972', '3/28/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dunc', 'Jerromes', 'djerromes55@pen.io', '7/27/1981', '3/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brigitta', 'Dighton', 'bdighton56@moonfruit.com', '8/6/2009', '3/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Terri-jo', 'Cheake', 'tcheake57@redcross.org', '12/12/1971', '6/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karla', 'Gibbon', 'kgibbon58@feedburner.com', '8/14/1949', '5/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Andrew', 'Baltrushaitis', 'abaltrushaitis59@devhub.com', '12/6/1999', '3/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Billi', 'Erdis', 'berdis5a@mail.ru', '8/13/1996', '2/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Berry', 'Dingsdale', 'bdingsdale5b@senate.gov', '1/5/1993', '1/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chic', 'Rawls', 'crawls5c@berkeley.edu', '3/26/1973', '10/28/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cozmo', 'Hows', 'chows5d@berkeley.edu', '3/14/1973', '4/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Noam', 'Fitzsymons', 'nfitzsymons5e@fema.gov', '8/26/1961', '3/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sissy', 'Blaise', 'sblaise5f@vimeo.com', '6/15/1973', '7/30/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Inigo', 'McPhilemy', 'imcphilemy5g@archive.org', '7/10/1969', '10/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Louie', 'Hotson', 'lhotson5h@zimbio.com', '3/30/1989', '11/25/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Randa', 'Close', 'rclose5i@imgur.com', '2/20/1973', '10/17/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rasla', 'Claeskens', 'rclaeskens5j@nasa.gov', '5/5/1993', '7/12/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shandee', 'Auton', 'sauton5k@friendfeed.com', '3/15/1994', '3/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Christophe', 'Smithen', 'csmithen5l@bloglovin.com', '1/16/1941', '3/10/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vanny', 'Shergold', 'vshergold5m@instagram.com', '1/11/1988', '6/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dru', 'Hartlebury', 'dhartlebury5n@delicious.com', '9/21/1951', '7/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Debby', 'Cunnow', 'dcunnow5o@plala.or.jp', '2/13/1950', '2/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Celina', 'Andreu', 'candreu5p@state.tx.us', '3/30/2009', '1/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wald', 'Lehr', 'wlehr5q@earthlink.net', '5/21/2006', '5/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Christel', 'Oriel', 'coriel5r@tamu.edu', '3/2/1988', '3/31/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bret', 'Cleevely', 'bcleevely5s@amazon.co.jp', '10/1/1979', '9/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Moises', 'Platfoot', 'mplatfoot5t@about.me', '7/24/1985', '3/8/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kalil', 'Briggs', 'kbriggs5u@businessinsider.com', '10/24/1991', '2/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Elora', 'Dunstone', 'edunstone5v@soup.io', '4/24/1957', '8/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Corinna', 'Casillas', 'ccasillas5w@meetup.com', '8/17/1987', '4/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ilario', 'Coxhead', 'icoxhead5x@nytimes.com', '3/22/1958', '9/6/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clarissa', 'Michelmore', 'cmichelmore5y@lulu.com', '1/14/1992', '11/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Crin', 'Danielian', 'cdanielian5z@wikimedia.org', '2/22/1992', '10/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cordelie', 'Ramberg', 'cramberg60@cisco.com', '12/26/1993', '2/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jess', 'Trippack', 'jtrippack61@furl.net', '8/7/1985', '5/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ayn', 'Bremley', 'abremley62@linkedin.com', '1/7/1955', '9/5/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gail', 'Duran', 'gduran63@webmd.com', '8/15/2001', '12/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rudolfo', 'Clines', 'rclines64@hibu.com', '2/23/1960', '8/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merrel', 'Brine', 'mbrine65@amazon.co.uk', '3/28/1976', '6/1/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rivkah', 'Pighills', 'rpighills66@studiopress.com', '6/2/1995', '3/10/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eli', 'Brewer', 'ebrewer67@multiply.com', '2/10/1970', '6/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Morty', 'Georgiades', 'mgeorgiades68@sfgate.com', '10/2/2003', '5/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Stesha', 'Gon', 'sgon69@blogtalkradio.com', '10/30/2005', '12/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Monah', 'Blackhall', 'mblackhall6a@dedecms.com', '8/6/1941', '4/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jackquelin', 'Riddle', 'jriddle6b@bravesites.com', '2/5/1970', '6/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Garrett', 'Myerscough', 'gmyerscough6c@jiathis.com', '8/5/1997', '11/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wilmer', 'Weekland', 'wweekland6d@hugedomains.com', '10/13/2002', '7/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hatti', 'Edler', 'hedler6e@nyu.edu', '2/16/1958', '9/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rey', 'McKag', 'rmckag6f@parallels.com', '1/20/1954', '8/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carlie', 'O''Sherrin', 'cosherrin6g@prweb.com', '7/7/1950', '11/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hattie', 'Sommerfeld', 'hsommerfeld6h@amazon.co.uk', '1/21/1963', '12/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pauly', 'Loosemore', 'ploosemore6i@angelfire.com', '4/5/1954', '11/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Corrie', 'Gradwell', 'cgradwell6j@mlb.com', '6/3/1959', '11/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kimball', 'Duckels', 'kduckels6k@admin.ch', '11/6/1988', '8/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gianna', 'Lung', 'glung6l@usgs.gov', '2/21/1999', '9/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Victoir', 'McGoogan', 'vmcgoogan6m@paginegialle.it', '10/27/1988', '8/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zsa zsa', 'Lexa', 'zlexa6n@soundcloud.com', '1/4/1998', '9/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Grace', 'Vamplus', 'gvamplus6o@dailymotion.com', '5/11/1951', '8/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Starlene', 'Josskowitz', 'sjosskowitz6p@ox.ac.uk', '1/25/1973', '1/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hugibert', 'Wilfing', 'hwilfing6q@dailymail.co.uk', '8/13/1961', '7/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Norrie', 'Mault', 'nmault6r@behance.net', '3/3/1957', '5/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lindsey', 'Nelsen', 'lnelsen6s@nymag.com', '7/24/1947', '4/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anabel', 'Durdy', 'adurdy6t@ifeng.com', '9/17/1993', '3/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gratiana', 'McWhin', 'gmcwhin6u@hexun.com', '5/25/1945', '12/31/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Avrit', 'Leveridge', 'aleveridge6v@dropbox.com', '9/19/1951', '3/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vern', 'Abthorpe', 'vabthorpe6w@chronoengine.com', '4/30/1983', '7/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maible', 'Clee', 'mclee6x@techcrunch.com', '7/4/1985', '4/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Andee', 'Sikorsky', 'asikorsky6y@naver.com', '9/20/1979', '10/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alphonse', 'Wigley', 'awigley6z@amazonaws.com', '1/24/1977', '6/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Corny', 'Britto', 'cbritto70@yale.edu', '8/7/1944', '9/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Umeko', 'Antham', 'uantham71@cnet.com', '12/5/1962', '8/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorrin', 'Relph', 'lrelph72@sun.com', '9/30/1963', '4/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cyrus', 'Kroin', 'ckroin73@canalblog.com', '12/5/2008', '10/19/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reginauld', 'Carwithen', 'rcarwithen74@clickbank.net', '1/27/1975', '8/31/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brent', 'Sousa', 'bsousa75@comcast.net', '2/16/1945', '9/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Annaliese', 'Cella', 'acella76@yahoo.co.jp', '6/6/1985', '11/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lula', 'Adao', 'ladao77@redcross.org', '6/8/1984', '11/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shepperd', 'Fetteplace', 'sfetteplace78@bloglovin.com', '10/26/2009', '5/19/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gib', 'O''Corrigane', 'gocorrigane79@theatlantic.com', '7/19/1947', '4/9/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Terrye', 'Beau', 'tbeau7a@discovery.com', '4/9/1958', '8/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gusti', 'Learned', 'glearned7b@house.gov', '9/8/1996', '6/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Donnamarie', 'Peris', 'dperis7c@foxnews.com', '5/30/1968', '5/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dwain', 'Kemmett', 'dkemmett7d@webmd.com', '3/28/1994', '3/10/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Josefa', 'Officer', 'jofficer7e@engadget.com', '12/4/1981', '4/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marcellus', 'Blockwell', 'mblockwell7f@discuz.net', '8/31/1964', '3/31/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Simeon', 'Whitnell', 'swhitnell7g@etsy.com', '3/29/1995', '11/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darrell', 'Wilstead', 'dwilstead7h@fc2.com', '5/30/1994', '1/16/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kendall', 'Gilvear', 'kgilvear7i@yahoo.com', '4/16/1953', '11/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jobie', 'Crown', 'jcrown7j@jigsy.com', '8/20/1965', '6/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arabele', 'Trewhitt', 'atrewhitt7k@ucoz.com', '1/26/2009', '8/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pat', 'Larwood', 'plarwood7l@seattletimes.com', '3/7/1991', '11/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Benedicta', 'Seymark', 'bseymark7m@intel.com', '6/29/2004', '2/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Roxana', 'Andriolli', 'randriolli7n@ucoz.com', '3/11/2004', '4/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kev', 'Burt', 'kburt7o@blogger.com', '8/5/1956', '6/4/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lee', 'Blesli', 'lblesli7p@disqus.com', '8/23/1991', '6/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Athene', 'Warlton', 'awarlton7q@yellowpages.com', '6/12/1955', '7/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hildagarde', 'Brouncker', 'hbrouncker7r@barnesandnoble.com', '3/11/1981', '8/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wildon', 'Windham', 'wwindham7s@ning.com', '7/31/1995', '11/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Valli', 'Bustin', 'vbustin7t@google.es', '3/28/1992', '9/3/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kelvin', 'Boni', 'kboni7u@latimes.com', '12/24/1971', '8/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Holli', 'Ranscombe', 'hranscombe7v@cargocollective.com', '2/25/1976', '5/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Riley', 'Kiehne', 'rkiehne7w@amazonaws.com', '11/21/1976', '6/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mora', 'Kosel', 'mkosel7x@salon.com', '2/14/1999', '9/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gabriellia', 'Merredy', 'gmerredy7y@mayoclinic.com', '10/4/1981', '6/16/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Spike', 'Dancer', 'sdancer7z@paginegialle.it', '3/23/1980', '2/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lela', 'Edgley', 'ledgley80@uiuc.edu', '5/25/1959', '11/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ryann', 'Meatcher', 'rmeatcher81@time.com', '8/20/1970', '4/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fawne', 'Beiderbeck', 'fbeiderbeck82@sohu.com', '2/29/2000', '10/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Halsey', 'Cuttler', 'hcuttler83@photobucket.com', '5/17/2002', '12/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jackson', 'Sibbs', 'jsibbs84@tripadvisor.com', '9/10/1953', '5/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maxi', 'Calbrathe', 'mcalbrathe85@marriott.com', '1/1/1983', '11/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jesselyn', 'Rodolf', 'jrodolf86@lycos.com', '12/10/1956', '5/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lilith', 'Simmon', 'lsimmon87@123-reg.co.uk', '8/24/1964', '10/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Romy', 'Ciardo', 'rciardo88@yahoo.com', '11/23/1944', '5/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Franzen', 'Bentke', 'fbentke89@fotki.com', '10/23/1948', '4/8/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Everard', 'Mammatt', 'emammatt8a@upenn.edu', '5/12/2003', '4/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marmaduke', 'Pinniger', 'mpinniger8b@theglobeandmail.com', '3/14/1983', '5/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sidney', 'Duchant', 'sduchant8c@t-online.de', '8/11/1993', '8/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Harley', 'Ickowicz', 'hickowicz8d@fema.gov', '7/5/1987', '3/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cora', 'Giacomo', 'cgiacomo8e@oakley.com', '3/7/1980', '8/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ruby', 'Letterick', 'rletterick8f@narod.ru', '7/1/1944', '2/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Freeland', 'Carnier', 'fcarnier8g@goo.gl', '6/9/1993', '8/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carmon', 'Kernley', 'ckernley8h@vimeo.com', '12/2/1976', '7/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Huntington', 'Van Zon', 'hvanzon8i@newyorker.com', '4/19/1957', '5/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tobe', 'Moyers', 'tmoyers8j@altervista.org', '4/17/2002', '6/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nerte', 'Duggen', 'nduggen8k@vkontakte.ru', '9/21/1976', '9/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rock', 'Coytes', 'rcoytes8l@fotki.com', '7/28/1941', '12/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Liana', 'Anster', 'lanster8m@google.com.hk', '1/3/1947', '3/7/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Timofei', 'Huckell', 'thuckell8n@vistaprint.com', '4/21/1996', '11/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leda', 'Bletso', 'lbletso8o@boston.com', '12/8/1954', '7/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alicea', 'Ratledge', 'aratledge8p@creativecommons.org', '2/18/1962', '11/10/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bud', 'Elsby', 'belsby8q@squidoo.com', '2/2/2004', '12/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rina', 'Serfati', 'rserfati8r@discuz.net', '3/9/1943', '9/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gilbertina', 'Bernocchi', 'gbernocchi8s@weibo.com', '3/10/1976', '8/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marilin', 'Winmill', 'mwinmill8t@amazon.co.jp', '8/5/1963', '1/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Issi', 'Connew', 'iconnew8u@blogger.com', '11/9/1997', '2/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Guillaume', 'Cornelissen', 'gcornelissen8v@reference.com', '5/1/1996', '7/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Loraine', 'Eastridge', 'leastridge8w@cornell.edu', '12/3/1954', '1/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Estell', 'Bolzmann', 'ebolzmann8x@soup.io', '1/30/1996', '12/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jolene', 'Urvoy', 'jurvoy8y@state.tx.us', '3/12/1954', '4/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Devin', 'Bruster', 'dbruster8z@mit.edu', '10/28/1969', '10/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Demott', 'Skinner', 'dskinner90@sitemeter.com', '4/18/1966', '5/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hewett', 'McPolin', 'hmcpolin91@newyorker.com', '4/14/1982', '8/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tyne', 'Heymes', 'theymes92@uol.com.br', '6/18/1994', '10/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sabra', 'Guilloud', 'sguilloud93@shareasale.com', '7/17/1970', '4/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anet', 'Tudgay', 'atudgay94@independent.co.uk', '1/7/2010', '2/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sigvard', 'Philipet', 'sphilipet95@youtube.com', '5/9/1942', '1/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aubrey', 'Haliday', 'ahaliday96@jugem.jp', '8/21/1962', '3/22/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Baillie', 'Yeiles', 'byeiles97@w3.org', '6/25/2006', '5/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kerianne', 'Woodward', 'kwoodward98@vimeo.com', '2/5/1953', '6/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Yardley', 'Picken', 'ypicken99@wikia.com', '6/29/1964', '10/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dulcia', 'Coleiro', 'dcoleiro9a@economist.com', '9/14/1980', '3/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Emelda', 'Eisikowitz', 'eeisikowitz9b@eventbrite.com', '3/7/1965', '7/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hamlen', 'Georger', 'hgeorger9c@lulu.com', '5/15/2004', '2/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bertina', 'Tonkin', 'btonkin9d@ebay.com', '4/29/1966', '10/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorenzo', 'Killock', 'lkillock9e@google.ca', '8/8/1962', '4/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Francisco', 'Schulze', 'fschulze9f@xing.com', '3/11/2003', '6/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marlon', 'Phlippi', 'mphlippi9g@theglobeandmail.com', '12/27/1959', '2/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nappie', 'Passo', 'npasso9h@de.vu', '5/24/1972', '1/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Deeann', 'Wragg', 'dwragg9i@army.mil', '7/12/1964', '2/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cathryn', 'Sumner', 'csumner9j@domainmarket.com', '7/8/1984', '11/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aldous', 'Klamp', 'aklamp9k@google.co.uk', '2/11/1946', '2/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Floyd', 'Yankishin', 'fyankishin9l@themeforest.net', '4/17/1964', '1/17/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aron', 'Errington', 'aerrington9m@lycos.com', '2/1/2010', '8/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cull', 'Beddoe', 'cbeddoe9n@paginegialle.it', '1/18/1984', '3/4/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Perceval', 'McIlwraith', 'pmcilwraith9o@xing.com', '8/14/1978', '1/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Coreen', 'Jurgen', 'cjurgen9p@washingtonpost.com', '8/12/1964', '10/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Goddart', 'Oxlee', 'goxlee9q@posterous.com', '6/4/1954', '5/21/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jolee', 'Grisley', 'jgrisley9r@geocities.com', '1/9/1946', '4/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darci', 'Suttling', 'dsuttling9s@delicious.com', '11/18/1990', '8/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rosabelle', 'Workes', 'rworkes9t@diigo.com', '11/9/1968', '4/4/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gavan', 'Yvon', 'gyvon9u@yale.edu', '4/24/1992', '5/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eran', 'Slocum', 'eslocum9v@mapquest.com', '2/10/1985', '5/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Robinson', 'Walpole', 'rwalpole9w@nbcnews.com', '1/3/1954', '9/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jean', 'Cagan', 'jcagan9x@imgur.com', '10/12/1948', '7/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Josie', 'Martini', 'jmartini9y@squarespace.com', '11/23/1958', '7/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Thadeus', 'Brazil', 'tbrazil9z@hud.gov', '2/17/1973', '10/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aloysia', 'Hebblewaite', 'ahebblewaitea0@parallels.com', '10/16/1952', '5/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chrissie', 'Carden', 'ccardena1@cdc.gov', '9/23/2008', '11/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dulsea', 'Habbon', 'dhabbona2@wix.com', '5/17/1961', '10/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ardenia', 'Barabich', 'abarabicha3@chron.com', '5/24/2000', '4/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Orlan', 'Durbin', 'odurbina4@360.cn', '3/22/1992', '8/5/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mignonne', 'Stimson', 'mstimsona5@elpais.com', '11/19/1953', '6/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Caroljean', 'Bellenie', 'cbelleniea6@lycos.com', '6/10/1959', '2/24/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giselle', 'Gullam', 'ggullama7@dedecms.com', '4/30/1965', '3/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brooke', 'Adamsen', 'badamsena8@4shared.com', '3/25/1981', '1/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cosmo', 'Judgkins', 'cjudgkinsa9@desdev.cn', '8/16/1996', '7/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hank', 'Lillico', 'hlillicoaa@cnn.com', '7/5/1984', '5/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lyn', 'Rounce', 'lrounceab@e-recht24.de', '4/22/1951', '10/24/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Niel', 'Jolin', 'njolinac@moonfruit.com', '10/31/1974', '2/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pattin', 'Levene', 'plevenead@mozilla.org', '3/28/1998', '5/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Skell', 'Trethewey', 'stretheweyae@kickstarter.com', '3/30/2005', '10/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gay', 'Jewar', 'gjewaraf@google.co.jp', '10/27/1973', '7/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jamey', 'Casazza', 'jcasazzaag@virginia.edu', '5/8/1950', '8/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lauritz', 'Early', 'learlyah@shareasale.com', '7/14/1986', '10/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kellie', 'Rothery', 'krotheryai@ted.com', '8/18/1996', '3/10/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hasty', 'Pettwood', 'hpettwoodaj@vimeo.com', '3/19/1950', '6/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Horace', 'Blacktin', 'hblacktinak@shutterfly.com', '7/5/1957', '7/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Corliss', 'de Juares', 'cdejuaresal@php.net', '7/11/1983', '1/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bernardina', 'Hynson', 'bhynsonam@narod.ru', '5/29/1943', '6/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pepe', 'Joutapavicius', 'pjoutapaviciusan@shop-pro.jp', '11/22/1981', '11/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hayley', 'Dillinger', 'hdillingerao@sciencedirect.com', '12/14/1981', '2/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Archambault', 'Brear', 'abrearap@yelp.com', '8/5/1954', '1/5/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rhody', 'McGrah', 'rmcgrahaq@blogspot.com', '8/26/1958', '10/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Christos', 'O''Codihie', 'cocodihiear@behance.net', '10/24/2001', '2/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Evanne', 'Camis', 'ecamisas@indiegogo.com', '4/7/1999', '8/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorianne', 'Jaram', 'ljaramat@cornell.edu', '9/11/1962', '7/12/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merralee', 'Dunan', 'mdunanau@nps.gov', '3/15/1998', '3/22/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janina', 'Kores', 'jkoresav@ezinearticles.com', '9/23/1978', '5/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dennison', 'Goodbarr', 'dgoodbarraw@symantec.com', '4/7/1988', '3/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dianemarie', 'Ringe', 'dringeax@tuttocitta.it', '11/16/1968', '5/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Miguel', 'Eate', 'meateay@freewebs.com', '10/29/2008', '1/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Laurel', 'Syres', 'lsyresaz@alexa.com', '4/18/1983', '1/1/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wendie', 'Frankcomb', 'wfrankcombb0@4shared.com', '6/17/1941', '3/11/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rhetta', 'Lappine', 'rlappineb1@comsenz.com', '7/12/1973', '3/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Allyn', 'Lidstone', 'alidstoneb2@nih.gov', '8/18/1941', '11/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chevalier', 'Treadway', 'ctreadwayb3@columbia.edu', '3/2/1995', '11/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Colene', 'MacNeice', 'cmacneiceb4@i2i.jp', '1/18/1970', '10/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Terrell', 'Hamal', 'thamalb5@businessweek.com', '7/7/2002', '9/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tamas', 'Radbond', 'tradbondb6@goo.ne.jp', '8/16/2003', '10/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bari', 'Romushkin', 'bromushkinb7@wix.com', '11/29/1979', '9/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cayla', 'Langthorn', 'clangthornb8@mashable.com', '9/13/2003', '2/8/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gordy', 'Zelner', 'gzelnerb9@purevolume.com', '11/25/2003', '2/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dannie', 'Statefield', 'dstatefieldba@hhs.gov', '6/29/1982', '8/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Loralee', 'Tumpane', 'ltumpanebb@over-blog.com', '10/30/1942', '9/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hamnet', 'Gayler', 'hgaylerbc@edublogs.org', '10/6/2001', '11/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Penelope', 'Hospital', 'phospitalbd@imdb.com', '2/26/2004', '4/5/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jenifer', 'Vertigan', 'jvertiganbe@ihg.com', '4/10/1955', '9/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hermia', 'Elsmore', 'helsmorebf@dropbox.com', '1/11/1991', '1/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lacey', 'Demonge', 'ldemongebg@dagondesign.com', '12/30/1965', '5/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reube', 'Heckney', 'rheckneybh@hao123.com', '1/29/1971', '6/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Will', 'Dincke', 'wdinckebi@booking.com', '1/30/1978', '12/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Richardo', 'Borwick', 'rborwickbj@google.ru', '3/8/2008', '12/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Othilia', 'Jeannesson', 'ojeannessonbk@pcworld.com', '8/6/1942', '11/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dulcie', 'Hulbert', 'dhulbertbl@addtoany.com', '2/25/1999', '11/12/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kaylyn', 'Carress', 'kcarressbm@4shared.com', '8/6/1952', '12/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leanor', 'Tosdevin', 'ltosdevinbn@forbes.com', '6/4/1976', '12/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Phebe', 'Gosker', 'pgoskerbo@umn.edu', '4/22/1981', '3/1/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jori', 'Lestrange', 'jlestrangebp@amazon.com', '9/3/1974', '7/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joshuah', 'Fairburne', 'jfairburnebq@smugmug.com', '3/16/1960', '2/22/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kelvin', 'Beckson', 'kbecksonbr@google.es', '10/25/1950', '10/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reynold', 'Brendish', 'rbrendishbs@twitter.com', '12/3/1956', '8/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Berget', 'Blaisdell', 'bblaisdellbt@google.fr', '1/21/1955', '10/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gifford', 'Mathevet', 'gmathevetbu@mediafire.com', '7/29/1973', '5/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ivett', 'Pococke', 'ipocockebv@bigcartel.com', '9/5/2000', '12/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kellie', 'Dockerty', 'kdockertybw@ning.com', '4/4/2010', '2/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Barbey', 'Ausello', 'bausellobx@bloomberg.com', '4/4/1978', '2/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frans', 'Huggin', 'fhugginby@sbwire.com', '1/8/1953', '10/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wren', 'Holston', 'wholstonbz@cmu.edu', '7/27/1960', '2/23/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Noll', 'Craggs', 'ncraggsc0@ow.ly', '7/16/1948', '4/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mandy', 'Resun', 'mresunc1@lycos.com', '12/20/2001', '12/28/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bailey', 'MacClancey', 'bmacclanceyc2@abc.net.au', '5/15/1986', '1/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Celia', 'Janos', 'cjanosc3@washingtonpost.com', '10/4/2001', '5/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giovanni', 'Mapson', 'gmapsonc4@fc2.com', '2/9/1966', '2/18/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bondy', 'Fiorentino', 'bfiorentinoc5@fda.gov', '1/5/1983', '7/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dominique', 'Durtnall', 'ddurtnallc6@yolasite.com', '3/1/1993', '12/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tadio', 'Dugue', 'tduguec7@qq.com', '11/10/1991', '5/21/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jacinda', 'Rawcliff', 'jrawcliffc8@dot.gov', '8/6/1944', '7/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Muhammad', 'Ardron', 'mardronc9@ow.ly', '8/23/1973', '6/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Geralda', 'McGuggy', 'gmcguggyca@oracle.com', '9/22/2007', '4/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Andrus', 'Crum', 'acrumcb@uiuc.edu', '10/16/2001', '5/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tracie', 'Bakesef', 'tbakesefcc@webmd.com', '9/17/1998', '10/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tish', 'Shawyer', 'tshawyercd@cloudflare.com', '5/22/1977', '4/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wheeler', 'O''Docherty', 'wodochertyce@dmoz.org', '10/30/1940', '2/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sydelle', 'Scadden', 'sscaddencf@foxnews.com', '2/10/1970', '12/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Teddie', 'Baldock', 'tbaldockcg@lycos.com', '1/9/1974', '4/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tully', 'Circuitt', 'tcircuittch@fc2.com', '5/10/1956', '12/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arlie', 'Landes', 'alandesci@utexas.edu', '5/3/1965', '7/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Saundra', 'Dwane', 'sdwanecj@ow.ly', '11/28/1988', '3/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Trstram', 'Fowler', 'tfowlerck@apple.com', '5/7/1969', '11/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Addia', 'Olsen', 'aolsencl@china.com.cn', '5/19/1983', '3/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Patton', 'Cullimore', 'pcullimorecm@liveinternet.ru', '2/1/1963', '3/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clarence', 'Dyne', 'cdynecn@ca.gov', '4/28/2000', '9/12/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marysa', 'Bonett', 'mbonettco@comcast.net', '9/22/1941', '1/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marinna', 'Fernanando', 'mfernanandocp@forbes.com', '8/19/1979', '2/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Salvador', 'Chifney', 'schifneycq@answers.com', '9/16/2002', '9/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Susannah', 'Flowitt', 'sflowittcr@businesswire.com', '10/14/2003', '12/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tricia', 'Parysiak', 'tparysiakcs@google.fr', '4/16/1950', '2/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lexie', 'Mungin', 'lmunginct@marketwatch.com', '12/19/1959', '10/15/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mignonne', 'Doley', 'mdoleycu@baidu.com', '5/3/1980', '12/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Adrianna', 'Dyball', 'adyballcv@army.mil', '1/5/1978', '8/17/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Barby', 'Roser', 'brosercw@mit.edu', '9/27/2006', '4/1/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pail', 'Aslin', 'paslincx@oaic.gov.au', '2/20/1971', '7/4/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dreddy', 'Hanway', 'dhanwaycy@phpbb.com', '2/11/1992', '7/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lion', 'Giraudou', 'lgiraudoucz@opera.com', '9/5/2002', '12/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Toiboid', 'Pimm', 'tpimmd0@photobucket.com', '3/24/1969', '7/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chet', 'Tootell', 'ctootelld1@army.mil', '6/5/1943', '10/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rosabel', 'Clowney', 'rclowneyd2@cdc.gov', '10/31/1945', '7/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Horatia', 'Cleeve', 'hcleeved3@dion.ne.jp', '8/6/1984', '7/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eleni', 'Dyers', 'edyersd4@chronoengine.com', '2/16/2004', '4/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Grove', 'Lundie', 'glundied5@mail.ru', '4/3/2009', '10/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Toby', 'McIan', 'tmciand6@cisco.com', '8/6/1990', '3/12/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leelah', 'Fetteplace', 'lfetteplaced7@bloglovin.com', '6/14/2007', '11/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Olwen', 'Bontine', 'obontined8@furl.net', '6/30/2008', '8/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janis', 'Warren', 'jwarrend9@hp.com', '5/18/1955', '9/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Esmaria', 'Feldberg', 'efeldbergda@deliciousdays.com', '6/27/2009', '7/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bartolemo', 'Shekle', 'bshekledb@reddit.com', '10/24/1986', '4/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Trever', 'Hoff', 'thoffdc@squidoo.com', '6/25/1973', '6/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Natalina', 'Aubrey', 'naubreydd@google.pl', '4/28/2009', '2/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carolin', 'Tickel', 'ctickelde@huffingtonpost.com', '8/17/1994', '7/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ahmad', 'Lockhurst', 'alockhurstdf@ted.com', '10/22/1976', '4/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vickie', 'Gasking', 'vgaskingdg@so-net.ne.jp', '2/15/1995', '10/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Freida', 'Jelphs', 'fjelphsdh@nifty.com', '9/24/1962', '7/12/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bobbie', 'Chuney', 'bchuneydi@examiner.com', '9/4/1967', '4/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mirilla', 'Basant', 'mbasantdj@yale.edu', '6/11/1944', '8/12/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frankie', 'Lewsley', 'flewsleydk@mediafire.com', '11/1/2000', '4/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorrin', 'Emmott', 'lemmottdl@oakley.com', '9/26/1963', '7/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Livvy', 'Cosbee', 'lcosbeedm@goodreads.com', '3/27/1955', '9/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giselbert', 'Josselsohn', 'gjosselsohndn@1und1.de', '1/21/2000', '7/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Avery', 'McDade', 'amcdadedo@blogger.com', '4/21/1942', '6/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hunt', 'Dowdeswell', 'hdowdeswelldp@wikia.com', '1/16/1997', '1/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Romeo', 'Gage', 'rgagedq@sfgate.com', '8/23/1956', '11/28/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Madel', 'McTurley', 'mmcturleydr@unicef.org', '12/26/1971', '8/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joycelin', 'Christophe', 'jchristopheds@gov.uk', '7/3/1982', '10/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Morna', 'Brient', 'mbrientdt@i2i.jp', '5/31/1952', '11/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Erroll', 'Tippin', 'etippindu@shinystat.com', '8/13/1984', '12/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Enriqueta', 'Nuzzti', 'enuzztidv@umich.edu', '6/29/1984', '1/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Burnard', 'Seagrave', 'bseagravedw@wikimedia.org', '9/23/1995', '7/18/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Margi', 'Mowlam', 'mmowlamdx@bizjournals.com', '2/3/2003', '8/15/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Armstrong', 'Pohl', 'apohldy@liveinternet.ru', '1/8/1968', '2/23/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tommie', 'Campsall', 'tcampsalldz@t-online.de', '7/22/1992', '8/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vincent', 'Springett', 'vspringette0@histats.com', '11/1/1991', '1/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Prisca', 'Hendrix', 'phendrixe1@xinhuanet.com', '7/22/1979', '1/25/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ranice', 'Clohissy', 'rclohissye2@sciencedirect.com', '10/15/1955', '5/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kylen', 'MacLaig', 'kmaclaige3@whitehouse.gov', '12/12/1943', '5/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Delmer', 'O'' Shea', 'dosheae4@bigcartel.com', '10/15/1986', '7/24/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Agustin', 'Melanaphy', 'amelanaphye5@t-online.de', '12/28/2002', '1/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Peggi', 'Cheverell', 'pcheverelle6@sourceforge.net', '11/19/2000', '4/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tandy', 'Dibson', 'tdibsone7@walmart.com', '5/27/1945', '1/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mischa', 'Lackemann', 'mlackemanne8@shop-pro.jp', '3/23/1963', '11/14/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arluene', 'Sheardown', 'asheardowne9@harvard.edu', '8/3/2004', '6/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Linell', 'Murray', 'lmurrayea@reuters.com', '4/28/1984', '1/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Atalanta', 'Darte', 'adarteeb@globo.com', '2/27/1997', '8/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cassandry', 'Aberdeen', 'caberdeenec@engadget.com', '1/13/1997', '6/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lee', 'Carmo', 'lcarmoed@nih.gov', '1/5/1993', '4/10/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sophronia', 'Bulleyn', 'sbulleynee@spotify.com', '11/29/1956', '4/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lilith', 'Watsham', 'lwatshamef@cyberchimps.com', '11/13/1940', '2/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Teena', 'Orthmann', 'torthmanneg@ehow.com', '6/4/1949', '3/2/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cindee', 'Downton', 'cdowntoneh@gizmodo.com', '9/30/1962', '3/21/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Scarlet', 'Karpeev', 'skarpeevei@europa.eu', '4/29/1990', '8/21/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pebrook', 'Crus', 'pcrusej@zdnet.com', '2/6/1942', '5/17/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lyssa', 'Grannell', 'lgrannellek@edublogs.org', '11/18/1991', '4/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arel', 'Spurrett', 'aspurrettel@mtv.com', '7/4/1940', '12/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lyell', 'Jaffra', 'ljaffraem@wsj.com', '2/16/1949', '1/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rici', 'Lawey', 'rlaweyen@mozilla.com', '5/10/1989', '6/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Daron', 'Garbutt', 'dgarbutteo@over-blog.com', '12/29/1973', '10/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Raddy', 'Balloch', 'rballochep@youtu.be', '2/22/1992', '11/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kristal', 'Mc Meekan', 'kmcmeekaneq@statcounter.com', '6/28/1988', '8/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nico', 'Simmings', 'nsimmingser@yelp.com', '4/5/1951', '8/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sanders', 'Cassells', 'scassellses@ucoz.ru', '7/15/2003', '9/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Yelena', 'Stolworthy', 'ystolworthyet@eventbrite.com', '2/14/1963', '10/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Durante', 'Knevit', 'dkneviteu@yahoo.co.jp', '2/8/1996', '9/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Henri', 'Felix', 'hfelixev@mtv.com', '5/1/1973', '1/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gustaf', 'Blondel', 'gblondelew@gmpg.org', '11/2/1950', '5/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ky', 'McAndie', 'kmcandieex@eventbrite.com', '6/18/1970', '9/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Henrie', 'Eldrid', 'heldridey@harvard.edu', '11/21/2008', '9/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Randa', 'Holleran', 'rholleranez@cam.ac.uk', '12/23/1968', '4/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maighdiln', 'Knocker', 'mknockerf0@hatena.ne.jp', '12/13/1948', '3/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rusty', 'Towell', 'rtowellf1@free.fr', '8/30/2005', '11/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Neil', 'Ayton', 'naytonf2@jimdo.com', '6/29/1995', '12/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Florinda', 'Timbs', 'ftimbsf3@tumblr.com', '2/22/1998', '11/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lona', 'Cockling', 'lcocklingf4@gnu.org', '2/5/1985', '2/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Devina', 'Letch', 'dletchf5@freewebs.com', '11/28/1946', '12/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Andee', 'Beachamp', 'abeachampf6@e-recht24.de', '12/3/1978', '4/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Emili', 'Hanshaw', 'ehanshawf7@nymag.com', '12/10/1983', '5/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Link', 'Attridge', 'lattridgef8@dailymotion.com', '6/9/1990', '7/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lorne', 'Geroldini', 'lgeroldinif9@cbsnews.com', '2/9/1962', '7/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joaquin', 'Giacubo', 'jgiacubofa@thetimes.co.uk', '4/7/1955', '7/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Templeton', 'Gathwaite', 'tgathwaitefb@rambler.ru', '5/23/1941', '6/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nancie', 'Knock', 'nknockfc@google.de', '11/17/2006', '11/17/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mauricio', 'Goodram', 'mgoodramfd@nyu.edu', '9/5/1988', '7/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dulsea', 'Cockley', 'dcockleyfe@berkeley.edu', '10/28/1965', '3/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lynett', 'Nason', 'lnasonff@mayoclinic.com', '7/17/2005', '10/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Westley', 'Tapping', 'wtappingfg@umich.edu', '7/15/2005', '10/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Berna', 'Duberry', 'bduberryfh@wsj.com', '8/26/1960', '2/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ruperto', 'Amyes', 'ramyesfi@taobao.com', '3/3/1953', '6/10/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Melonie', 'Longbothom', 'mlongbothomfj@biblegateway.com', '7/23/2006', '12/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Price', 'Lindell', 'plindellfk@wikispaces.com', '4/15/1985', '10/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leta', 'Gaine of England', 'lgaineofenglandfl@joomla.org', '4/15/1960', '11/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kane', 'Noton', 'knotonfm@soundcloud.com', '4/27/1956', '5/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tootsie', 'Cadman', 'tcadmanfn@theatlantic.com', '1/3/1954', '11/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Harmonie', 'Rainer', 'hrainerfo@yahoo.co.jp', '6/9/1983', '1/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Stafani', 'Cheyne', 'scheynefp@usa.gov', '4/21/1968', '8/17/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sutton', 'Rawlyns', 'srawlynsfq@abc.net.au', '7/25/1955', '11/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Toddie', 'Fussey', 'tfusseyfr@live.com', '11/20/1963', '6/6/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Elene', 'Pinckard', 'epinckardfs@nydailynews.com', '3/28/1961', '6/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cindi', 'Hulles', 'chullesft@edublogs.org', '11/11/1981', '4/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hertha', 'Petren', 'hpetrenfu@java.com', '11/20/1959', '10/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aindrea', 'Andrusyak', 'aandrusyakfv@home.pl', '6/17/1942', '12/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bartholomew', 'Vasser', 'bvasserfw@jiathis.com', '7/6/1947', '2/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anabal', 'Advani', 'aadvanifx@gmpg.org', '12/1/2000', '4/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cassaundra', 'Trevethan', 'ctrevethanfy@skyrock.com', '9/23/1987', '5/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darci', 'Bavridge', 'dbavridgefz@tripod.com', '7/26/1993', '7/7/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tarah', 'Bruno', 'tbrunog0@intel.com', '3/8/1996', '10/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeanelle', 'Norvill', 'jnorvillg1@omniture.com', '1/29/1980', '7/17/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeane', 'Crookshank', 'jcrookshankg2@latimes.com', '1/28/1962', '2/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Irina', 'Pinner', 'ipinnerg3@tamu.edu', '4/17/1969', '12/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gaby', 'Erbain', 'gerbaing4@1688.com', '5/12/1977', '8/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kerry', 'Cleare', 'kcleareg5@washingtonpost.com', '10/5/1982', '8/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Blondell', 'Louw', 'blouwg6@jigsy.com', '5/23/1967', '3/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merle', 'Livezey', 'mlivezeyg7@newsvine.com', '12/11/1961', '2/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rosella', 'Bygraves', 'rbygravesg8@simplemachines.org', '8/15/1972', '11/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gilles', 'Curry', 'gcurryg9@51.la', '7/23/1963', '7/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cory', 'Scandrick', 'cscandrickga@blog.com', '12/24/1977', '6/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wakefield', 'Hunt', 'whuntgb@seattletimes.com', '12/21/1954', '7/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Derk', 'Dehmel', 'ddehmelgc@uiuc.edu', '3/17/1958', '9/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sheena', 'Hillborne', 'shillbornegd@sphinn.com', '4/3/1995', '11/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Thorny', 'Hanselman', 'thanselmange@sourceforge.net', '9/18/1945', '3/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Evvie', 'Stinchcombe', 'estinchcombegf@shareasale.com', '1/15/1942', '12/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Huntley', 'Fenix', 'hfenixgg@dailymail.co.uk', '1/21/1972', '10/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Salim', 'Lodge', 'slodgegh@nationalgeographic.com', '1/19/1975', '1/6/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leo', 'Girardez', 'lgirardezgi@meetup.com', '12/7/1980', '2/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sloan', 'Castagnone', 'scastagnonegj@zimbio.com', '8/4/2009', '12/16/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Michaela', 'Lory', 'mlorygk@shinystat.com', '8/5/1957', '5/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shalom', 'Jouaneton', 'sjouanetongl@friendfeed.com', '4/24/1970', '7/25/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tracey', 'Pickover', 'tpickovergm@csmonitor.com', '12/20/1997', '6/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bessy', 'Lawey', 'blaweygn@ucsd.edu', '12/2/2009', '11/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Danella', 'Bortolomei', 'dbortolomeigo@mtv.com', '1/8/1978', '3/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bernadine', 'Demke', 'bdemkegp@rediff.com', '2/17/1994', '5/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maurene', 'Newlove', 'mnewlovegq@japanpost.jp', '6/22/1989', '6/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Liza', 'Autie', 'lautiegr@prlog.org', '10/2/1967', '2/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arabel', 'Blanko', 'ablankogs@webnode.com', '8/10/1941', '5/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jan', 'Spowart', 'jspowartgt@vimeo.com', '9/10/1992', '11/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kirby', 'Galler', 'kgallergu@devhub.com', '1/10/2009', '2/3/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merrielle', 'Sparkwell', 'msparkwellgv@prnewswire.com', '3/30/1941', '10/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Pamela', 'Postan', 'ppostangw@shareasale.com', '5/3/1982', '1/31/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janith', 'McKean', 'jmckeangx@utexas.edu', '3/16/1984', '11/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Donelle', 'Cordingly', 'dcordinglygy@bravesites.com', '6/19/1981', '11/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sheeree', 'Gilcriest', 'sgilcriestgz@addtoany.com', '12/12/2009', '3/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Oby', 'Aicken', 'oaickenh0@moonfruit.com', '7/8/1986', '7/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kata', 'McChruiter', 'kmcchruiterh1@nifty.com', '12/27/1997', '2/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tess', 'Deviney', 'tdevineyh2@unc.edu', '11/3/1978', '9/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Iain', 'Gullberg', 'igullbergh3@slideshare.net', '7/12/1989', '10/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Deerdre', 'Crankhorn', 'dcrankhornh4@tinyurl.com', '11/21/1976', '7/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lynda', 'Grundy', 'lgrundyh5@yahoo.com', '11/10/1978', '11/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kyle', 'Brewood', 'kbrewoodh6@wordpress.org', '1/15/1946', '9/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Collete', 'Woolmer', 'cwoolmerh7@google.de', '8/27/1994', '10/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anatollo', 'Hogbin', 'ahogbinh8@reddit.com', '9/11/2003', '5/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Genevieve', 'Gallafant', 'ggallafanth9@technorati.com', '6/20/1971', '12/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sallyanne', 'Bradbury', 'sbradburyha@altervista.org', '7/30/1976', '3/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tamas', 'Hillan', 'thillanhb@altervista.org', '9/12/1977', '10/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fianna', 'Gannicleff', 'fgannicleffhc@rambler.ru', '9/28/1979', '10/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maggi', 'Glenfield', 'mglenfieldhd@bloglovin.com', '3/16/1966', '6/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Justine', 'Huyche', 'jhuychehe@cisco.com', '11/19/1994', '7/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ron', 'Fouldes', 'rfouldeshf@sciencedirect.com', '1/19/1977', '9/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Prentice', 'Venners', 'pvennershg@cbslocal.com', '3/10/1993', '10/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darlleen', 'Cuss', 'dcusshh@slashdot.org', '1/11/2010', '12/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Elvera', 'Offord', 'eoffordhi@squarespace.com', '12/16/1964', '12/28/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ileana', 'Dossetter', 'idossetterhj@loc.gov', '11/2/1945', '10/23/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Amelia', 'Grunwall', 'agrunwallhk@earthlink.net', '1/3/1951', '7/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cariotta', 'Trematick', 'ctrematickhl@360.cn', '2/23/1999', '1/6/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cinda', 'Clubbe', 'cclubbehm@alexa.com', '3/18/1949', '4/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sascha', 'Krzyzowski', 'skrzyzowskihn@mlb.com', '2/21/1957', '3/4/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rouvin', 'Wimpeney', 'rwimpeneyho@wisc.edu', '11/2/1951', '11/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Barbi', 'Hurlston', 'bhurlstonhp@hostgator.com', '9/29/1987', '11/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Freemon', 'Varley', 'fvarleyhq@topsy.com', '3/5/1959', '11/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Delilah', 'Perfili', 'dperfilihr@flavors.me', '4/26/1955', '8/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mendie', 'Brugh', 'mbrughhs@fotki.com', '6/1/1964', '4/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeniece', 'Burt', 'jburtht@bbc.co.uk', '8/25/1967', '7/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Godiva', 'Hemmingway', 'ghemmingwayhu@gmpg.org', '9/16/1959', '10/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Munroe', 'Rasper', 'mrasperhv@jalbum.net', '6/2/1999', '3/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jesse', 'Macias', 'jmaciashw@geocities.jp', '12/19/1997', '8/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kriste', 'McMichan', 'kmcmichanhx@theglobeandmail.com', '8/18/1947', '3/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Deina', 'Godthaab', 'dgodthaabhy@globo.com', '12/16/1988', '7/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alberta', 'Hazeldean', 'ahazeldeanhz@addthis.com', '1/16/1943', '9/28/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Claude', 'Scutcheon', 'cscutcheoni0@diigo.com', '10/1/1950', '9/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Quentin', 'Humburton', 'qhumburtoni1@histats.com', '7/26/2004', '9/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rurik', 'Uzzell', 'ruzzelli2@chicagotribune.com', '6/2/1965', '6/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wiatt', 'Peggs', 'wpeggsi3@uiuc.edu', '2/19/1945', '4/25/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ker', 'Iredale', 'kiredalei4@msn.com', '12/21/2002', '7/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lucienne', 'Divisek', 'ldiviseki5@boston.com', '1/6/1954', '9/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jillie', 'Goodrick', 'jgoodricki6@yale.edu', '6/3/1943', '5/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lyndsey', 'Livings', 'llivingsi7@reference.com', '6/11/1990', '10/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cary', 'Gook', 'cgooki8@tumblr.com', '4/20/1969', '3/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lulita', 'Marcus', 'lmarcusi9@boston.com', '11/1/1982', '3/12/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karil', 'Tapp', 'ktappia@psu.edu', '1/10/2007', '7/8/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joachim', 'Simmings', 'jsimmingsib@gov.uk', '5/5/1987', '12/16/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Izabel', 'McEvay', 'imcevayic@kickstarter.com', '1/26/1987', '2/16/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ximenez', 'Cuolahan', 'xcuolahanid@nydailynews.com', '6/24/1999', '9/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cybill', 'Benedikt', 'cbenediktie@google.com.hk', '9/3/1950', '12/4/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kenn', 'McAdam', 'kmcadamif@so-net.ne.jp', '9/6/2008', '7/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kariotta', 'MacClure', 'kmacclureig@hp.com', '5/11/1980', '8/17/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tiebold', 'Geggie', 'tgeggieih@parallels.com', '7/8/1943', '7/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jada', 'Petherick', 'jpetherickii@bluehost.com', '8/7/2005', '5/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darryl', 'McTavy', 'dmctavyij@buzzfeed.com', '10/9/2005', '12/1/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeannine', 'Gaine of England', 'jgaineofenglandik@seesaa.net', '6/9/1982', '10/21/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janette', 'Hartropp', 'jhartroppil@home.pl', '12/2/1978', '12/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joela', 'Philipet', 'jphilipetim@sakura.ne.jp', '7/31/1985', '8/14/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marcela', 'McGuckin', 'mmcguckinin@hubpages.com', '5/28/1966', '4/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kendre', 'Gritsunov', 'kgritsunovio@123-reg.co.uk', '8/8/1960', '5/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Silas', 'Fritchley', 'sfritchleyip@amazon.co.uk', '10/17/1995', '8/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leonerd', 'Duffitt', 'lduffittiq@spiegel.de', '8/24/1995', '2/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Burg', 'Paprotny', 'bpaprotnyir@nbcnews.com', '4/13/1969', '12/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nehemiah', 'Dunwoody', 'ndunwoodyis@yellowpages.com', '11/6/1982', '7/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Norbie', 'Rosevear', 'nrosevearit@about.com', '7/1/1949', '12/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carrissa', 'Byer', 'cbyeriu@eepurl.com', '9/16/1962', '4/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gerry', 'Evert', 'gevertiv@home.pl', '2/18/2004', '6/19/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Meridel', 'Glentworth', 'mglentworthiw@infoseek.co.jp', '12/4/1974', '10/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vinny', 'Quantrell', 'vquantrellix@google.de', '3/2/1950', '3/20/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shalna', 'Raun', 'srauniy@icio.us', '12/23/1943', '1/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Matteo', 'Borrel', 'mborreliz@utexas.edu', '12/21/1956', '11/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Modesta', 'Zoellner', 'mzoellnerj0@umn.edu', '4/25/1969', '3/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kali', 'Oneile', 'koneilej1@dmoz.org', '8/10/1960', '3/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dugald', 'Tidcomb', 'dtidcombj2@tmall.com', '8/27/1967', '2/13/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bobbie', 'Swine', 'bswinej3@archive.org', '11/4/1979', '10/11/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kalindi', 'Vanacci', 'kvanaccij4@de.vu', '7/27/1991', '3/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sherie', 'Helleckas', 'shelleckasj5@xing.com', '8/11/1984', '5/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Conrado', 'Glaserman', 'cglasermanj6@seesaa.net', '7/8/2001', '7/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sollie', 'Dell Casa', 'sdellcasaj7@fc2.com', '5/24/1971', '3/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leif', 'Cookes', 'lcookesj8@over-blog.com', '4/25/1979', '5/4/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Caryl', 'Baldwin', 'cbaldwinj9@nature.com', '8/26/1941', '6/19/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ado', 'Lingfoot', 'alingfootja@springer.com', '10/2/1967', '8/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aksel', 'Broad', 'abroadjb@vinaora.com', '1/2/1954', '3/13/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marcela', 'Fagence', 'mfagencejc@unblog.fr', '4/1/1976', '3/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merilee', 'Kildea', 'mkildeajd@livejournal.com', '10/27/1941', '12/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brit', 'Scrogges', 'bscroggesje@bandcamp.com', '2/9/1977', '7/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mercy', 'Peaden', 'mpeadenjf@wikimedia.org', '2/1/1961', '3/17/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fay', 'Tanti', 'ftantijg@dot.gov', '5/31/1973', '8/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Grover', 'Renforth', 'grenforthjh@oaic.gov.au', '12/27/1987', '8/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bourke', 'Arsey', 'barseyji@sfgate.com', '7/20/1995', '2/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mart', 'Gilardoni', 'mgilardonijj@narod.ru', '9/27/1964', '10/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brand', 'Rentz', 'brentzjk@abc.net.au', '5/1/1984', '4/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jacklyn', 'Maccaddie', 'jmaccaddiejl@thetimes.co.uk', '6/23/1995', '9/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vassili', 'Rundle', 'vrundlejm@cornell.edu', '1/14/1964', '9/7/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Danita', 'Sturrock', 'dsturrockjn@oracle.com', '12/8/1969', '4/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bella', 'Antosch', 'bantoschjo@quantcast.com', '7/9/1991', '3/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kikelia', 'Wenban', 'kwenbanjp@businesswire.com', '12/31/2009', '6/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kerr', 'Plows', 'kplowsjq@accuweather.com', '5/23/1976', '9/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Blanche', 'Keward', 'bkewardjr@smugmug.com', '12/15/1975', '4/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maudie', 'Skingle', 'mskinglejs@mozilla.com', '10/31/1989', '7/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rhody', 'Arnow', 'rarnowjt@statcounter.com', '4/14/1989', '7/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Maurene', 'De Gregoli', 'mdegregoliju@typepad.com', '12/13/1953', '6/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rina', 'Pluthero', 'rplutherojv@cyberchimps.com', '12/29/1989', '4/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ira', 'Wheelband', 'iwheelbandjw@xing.com', '11/6/1988', '1/12/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Audry', 'Extall', 'aextalljx@dmoz.org', '2/17/1944', '5/15/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aurelie', 'Salsbury', 'asalsburyjy@ucsd.edu', '1/15/1986', '12/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Octavia', 'Boundey', 'oboundeyjz@xing.com', '2/27/1974', '3/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nydia', 'Lean', 'nleank0@bluehost.com', '12/19/1992', '4/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jorgan', 'Harwick', 'jharwickk1@cam.ac.uk', '12/17/1960', '8/9/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Packston', 'Skures', 'pskuresk2@free.fr', '4/22/1997', '9/4/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arther', 'Scholfield', 'ascholfieldk3@moonfruit.com', '10/19/1975', '3/4/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Raquela', 'Leteurtre', 'rleteurtrek4@loc.gov', '6/26/2009', '12/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Magnum', 'Laddle', 'mladdlek5@pcworld.com', '11/15/2002', '11/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Keane', 'Martinet', 'kmartinetk6@squidoo.com', '10/23/1971', '2/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rafaela', 'Kosiada', 'rkosiadak7@bigcartel.com', '7/14/1991', '10/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Taddeo', 'Dreini', 'tdreinik8@shop-pro.jp', '5/11/1986', '4/14/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gerhard', 'Rance', 'grancek9@oakley.com', '5/21/1993', '3/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reynolds', 'Daud', 'rdaudka@ameblo.jp', '11/29/1984', '1/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marya', 'Harsum', 'mharsumkb@mapquest.com', '4/17/1950', '12/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeane', 'Markovic', 'jmarkovickc@walmart.com', '6/28/1954', '2/2/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Licha', 'Dunderdale', 'ldunderdalekd@mapy.cz', '9/7/1976', '7/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gladys', 'Ludgrove', 'gludgroveke@boston.com', '3/26/1954', '4/1/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Flory', 'Quade', 'fquadekf@google.ca', '11/15/1972', '7/17/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mirella', 'Wimp', 'mwimpkg@feedburner.com', '2/2/1976', '4/26/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ronica', 'MacCallister', 'rmaccallisterkh@163.com', '2/13/1946', '9/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bev', 'Austwick', 'baustwickki@furl.net', '2/18/1949', '1/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alvin', 'Duignan', 'aduignankj@list-manage.com', '6/27/1999', '7/31/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brantley', 'Northcote', 'bnorthcotekk@histats.com', '11/2/1982', '7/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dewie', 'Adrien', 'dadrienkl@seesaa.net', '10/11/1971', '11/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zorana', 'Abbatt', 'zabbattkm@infoseek.co.jp', '6/10/1975', '4/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mendy', 'Haysman', 'mhaysmankn@blogspot.com', '9/21/2007', '5/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chrisse', 'Doward', 'cdowardko@boston.com', '6/24/1985', '1/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ellissa', 'Cosgreave', 'ecosgreavekp@deliciousdays.com', '10/5/1998', '3/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Donall', 'Aveson', 'davesonkq@csmonitor.com', '6/3/1997', '11/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gina', 'Heminsley', 'gheminsleykr@bluehost.com', '8/27/2001', '12/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Faina', 'Maulden', 'fmauldenks@php.net', '6/28/1942', '10/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Korney', 'Redmayne', 'kredmaynekt@harvard.edu', '1/30/2000', '6/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zsa zsa', 'Center', 'zcenterku@51.la', '7/4/1986', '4/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Anna-maria', 'Leaf', 'aleafkv@hexun.com', '5/13/1997', '8/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arline', 'Thomel', 'athomelkw@cnn.com', '4/23/1967', '6/6/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gale', 'Renoden', 'grenodenkx@china.com.cn', '8/2/1992', '8/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eben', 'Snewin', 'esnewinky@home.pl', '6/26/2001', '12/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Roch', 'Toll', 'rtollkz@github.com', '2/28/1963', '12/10/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Deerdre', 'Clifford', 'dcliffordl0@macromedia.com', '12/31/1968', '2/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carlos', 'Vlahos', 'cvlahosl1@discuz.net', '7/13/1973', '5/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Darius', 'Poluzzi', 'dpoluzzil2@blog.com', '10/28/1962', '2/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arabella', 'McCartan', 'amccartanl3@devhub.com', '4/23/1941', '2/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Myra', 'Lindeberg', 'mlindebergl4@phpbb.com', '1/26/1956', '3/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Harvey', 'Gable', 'hgablel5@gov.uk', '4/5/2006', '5/13/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Scot', 'Burnham', 'sburnhaml6@howstuffworks.com', '2/15/1966', '7/30/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ron', 'Sutherns', 'rsuthernsl7@rakuten.co.jp', '8/2/1958', '12/13/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ronnie', 'McCuffie', 'rmccuffiel8@wikia.com', '6/25/1958', '5/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vilma', 'Acreman', 'vacremanl9@amazonaws.com', '11/9/1979', '2/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marj', 'Sturge', 'msturgela@umich.edu', '2/13/1977', '1/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chickie', 'Reijmers', 'creijmerslb@live.com', '7/8/1971', '7/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Natalya', 'Gallihaulk', 'ngallihaulklc@hp.com', '2/15/1954', '3/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Avrit', 'Boerder', 'aboerderld@themeforest.net', '3/8/1976', '8/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giorgio', 'Springate', 'gspringatele@t-online.de', '6/30/1960', '10/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cornela', 'Stillman', 'cstillmanlf@sciencedaily.com', '7/23/1999', '12/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Larissa', 'Mc Caughen', 'lmccaughenlg@japanpost.jp', '5/10/1954', '7/1/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Amargo', 'Yukhtin', 'ayukhtinlh@stumbleupon.com', '9/25/1960', '11/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shay', 'Minear', 'sminearli@statcounter.com', '8/14/1978', '10/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Boonie', 'Perott', 'bperottlj@google.com.br', '6/30/1989', '1/20/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bret', 'Bransden', 'bbransdenlk@shareasale.com', '7/14/1960', '3/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bran', 'Flohard', 'bflohardll@miibeian.gov.cn', '10/11/1992', '1/28/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rosalynd', 'Crinion', 'rcrinionlm@mail.ru', '6/21/1944', '6/25/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Elbertina', 'Kliement', 'ekliementln@nasa.gov', '4/24/1985', '7/31/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mella', 'Effnert', 'meffnertlo@youku.com', '1/10/2010', '4/17/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Annamaria', 'Mion', 'amionlp@tmall.com', '3/8/2004', '1/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mark', 'Peppard', 'mpeppardlq@cam.ac.uk', '7/14/1977', '12/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lucilia', 'Schulter', 'lschulterlr@myspace.com', '1/11/1948', '2/20/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Monika', 'Goldspink', 'mgoldspinkls@addthis.com', '1/16/1962', '10/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gussi', 'Stell', 'gstelllt@engadget.com', '9/23/1948', '12/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Trudy', 'Cankett', 'tcankettlu@tripod.com', '2/12/1967', '10/29/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Decca', 'Klicher', 'dklicherlv@dell.com', '8/14/1941', '5/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tove', 'Martinez', 'tmartinezlw@multiply.com', '12/26/1961', '4/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nola', 'Scott', 'nscottlx@vk.com', '2/9/1978', '2/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Helen-elizabeth', 'Edlyne', 'hedlynely@go.com', '4/12/1998', '1/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Constantine', 'Galbraith', 'cgalbraithlz@ihg.com', '5/26/1991', '8/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cassi', 'Macari', 'cmacarim0@omniture.com', '3/12/1947', '10/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Leicester', 'Pinnick', 'lpinnickm1@moonfruit.com', '5/4/1982', '5/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Percival', 'Fideler', 'pfidelerm2@earthlink.net', '11/3/1943', '11/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bobinette', 'O''Mahoney', 'bomahoneym3@goodreads.com', '3/10/1964', '1/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aksel', 'Morhall', 'amorhallm4@cdc.gov', '7/1/1989', '6/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Salem', 'Kirwan', 'skirwanm5@mail.ru', '6/24/1965', '11/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gretta', 'Stot', 'gstotm6@webmd.com', '5/28/1944', '12/8/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Spense', 'Barroux', 'sbarrouxm7@buzzfeed.com', '6/12/1960', '6/26/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Taryn', 'Huncoot', 'thuncootm8@dell.com', '2/2/1977', '12/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Antonin', 'Fluger', 'aflugerm9@tinyurl.com', '11/17/1963', '5/7/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tonye', 'Peers', 'tpeersma@nymag.com', '4/11/1995', '2/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Oneida', 'Filipczynski', 'ofilipczynskimb@joomla.org', '11/22/1940', '1/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tarra', 'Taggett', 'ttaggettmc@jiathis.com', '11/5/1986', '8/31/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Waite', 'Gantzman', 'wgantzmanmd@princeton.edu', '12/9/1978', '11/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Selle', 'Schust', 'sschustme@histats.com', '9/30/1987', '7/14/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clarie', 'Farebrother', 'cfarebrothermf@cnbc.com', '10/9/2009', '9/2/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sonnnie', 'Mulkerrins', 'smulkerrinsmg@uol.com.br', '12/9/1979', '5/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dolorita', 'Brenston', 'dbrenstonmh@1688.com', '9/4/1983', '5/9/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Parke', 'Gatheridge', 'pgatheridgemi@hubpages.com', '10/24/1978', '1/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mikol', 'Whittet', 'mwhittetmj@miibeian.gov.cn', '10/26/1943', '8/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Quint', 'Willox', 'qwilloxmk@drupal.org', '6/25/1976', '1/17/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Verne', 'Laborde', 'vlabordeml@linkedin.com', '1/26/1965', '1/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tymon', 'Anstie', 'tanstiemm@wsj.com', '10/5/1958', '5/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Link', 'Conduit', 'lconduitmn@admin.ch', '9/17/1968', '3/18/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bili', 'Claricoates', 'bclaricoatesmo@ox.ac.uk', '2/1/1949', '12/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Margareta', 'Divver', 'mdivvermp@geocities.jp', '2/1/1960', '7/20/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Denney', 'Theriot', 'dtheriotmq@hud.gov', '8/27/1945', '7/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Annaliese', 'Deeley', 'adeeleymr@sakura.ne.jp', '2/28/2001', '6/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Mendie', 'Guidetti', 'mguidettims@unesco.org', '4/6/1963', '11/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arnie', 'Pye', 'apyemt@purevolume.com', '8/24/1992', '3/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Warden', 'Boarleyson', 'wboarleysonmu@t.co', '7/18/1964', '11/10/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ralina', 'Orris', 'rorrismv@tumblr.com', '4/30/1967', '12/6/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sherie', 'Cornock', 'scornockmw@ibm.com', '4/21/1997', '11/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Latisha', 'Winspar', 'lwinsparmx@seesaa.net', '1/23/1978', '1/26/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Parry', 'Roseaman', 'proseamanmy@tmall.com', '11/20/1945', '1/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Libby', 'McFaul', 'lmcfaulmz@mashable.com', '9/20/2002', '1/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marilyn', 'Dewbury', 'mdewburyn0@imgur.com', '9/10/1975', '1/9/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Adey', 'Custed', 'acustedn1@pen.io', '8/10/1986', '7/15/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reuven', 'Brittles', 'rbrittlesn2@meetup.com', '12/11/1947', '12/3/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marijn', 'Durban', 'mdurbann3@yelp.com', '11/28/1963', '6/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Teddie', 'Fulcher', 'tfulchern4@drupal.org', '4/4/1942', '10/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Moss', 'Daughtry', 'mdaughtryn5@weebly.com', '8/14/1954', '9/7/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hugues', 'Josey', 'hjoseyn6@discuz.net', '1/26/2003', '3/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vin', 'Oaker', 'voakern7@house.gov', '6/8/1949', '4/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carlyn', 'Geekin', 'cgeekinn8@google.cn', '10/20/1950', '2/12/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Madella', 'Wessing', 'mwessingn9@cpanel.net', '3/13/1968', '6/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Robby', 'Boame', 'rboamena@chronoengine.com', '2/16/1977', '8/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dalila', 'Kenaway', 'dkenawaynb@xinhuanet.com', '5/1/1980', '8/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Connie', 'Tolomelli', 'ctolomellinc@oracle.com', '7/17/1975', '1/11/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bee', 'Coyett', 'bcoyettnd@slashdot.org', '3/16/1989', '4/5/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hamid', 'Espinos', 'hespinosne@multiply.com', '7/9/1946', '4/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Durward', 'Agge', 'daggenf@lycos.com', '10/4/1947', '11/19/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('York', 'Thomelin', 'ythomelinng@xing.com', '1/18/1996', '7/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Reinold', 'Scullard', 'rscullardnh@shutterfly.com', '1/11/2007', '6/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Emogene', 'Santi', 'esantini@weather.com', '11/1/1940', '3/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tandy', 'Beig', 'tbeignj@hhs.gov', '2/24/2008', '9/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Berti', 'Gogay', 'bgogaynk@parallels.com', '5/20/1966', '11/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Becky', 'Mobius', 'bmobiusnl@t.co', '8/11/2000', '4/12/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Guthrey', 'Heugel', 'gheugelnm@seattletimes.com', '12/22/1995', '5/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Miranda', 'Brixey', 'mbrixeynn@e-recht24.de', '7/2/1956', '1/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hailey', 'Eisikowitz', 'heisikowitzno@microsoft.com', '6/13/1999', '10/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Costa', 'Cram', 'ccramnp@businessweek.com', '10/29/1950', '4/8/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rickie', 'Leadstone', 'rleadstonenq@bizjournals.com', '4/11/1942', '12/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lalo', 'Pumfrey', 'lpumfreynr@hostgator.com', '11/19/1961', '3/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Korie', 'Beautyman', 'kbeautymanns@google.com.br', '8/1/1977', '9/19/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Adrian', 'Paulmann', 'apaulmannnt@aboutads.info', '8/13/1970', '6/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cathlene', 'Gribben', 'cgribbennu@answers.com', '2/5/1950', '9/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gardy', 'Di Franceschi', 'gdifranceschinv@jigsy.com', '11/6/1944', '6/2/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rodrique', 'Donlon', 'rdonlonnw@apache.org', '2/3/1970', '4/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frederigo', 'Hush', 'fhushnx@deviantart.com', '9/16/1992', '11/7/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Simon', 'O''Flynn', 'soflynnny@macromedia.com', '5/10/2000', '2/1/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janet', 'Ivison', 'jivisonnz@ed.gov', '4/21/1971', '8/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Warde', 'Sposito', 'wspositoo0@marketwatch.com', '9/29/1949', '1/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Antoine', 'Baroc', 'abaroco1@artisteer.com', '2/8/1959', '3/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Avery', 'Wagge', 'awaggeo2@imgur.com', '5/1/1972', '9/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bobbette', 'Jiroutka', 'bjiroutkao3@gravatar.com', '11/25/1954', '10/14/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Carmita', 'Blinckhorne', 'cblinckhorneo4@ted.com', '9/17/1971', '5/30/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Merissa', 'Coutthart', 'mcouttharto5@storify.com', '11/23/1952', '5/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alisun', 'Kegley', 'akegleyo6@narod.ru', '10/22/1987', '1/28/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Noelyn', 'Doore', 'ndooreo7@163.com', '12/24/1988', '3/30/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Eward', 'Broxup', 'ebroxupo8@mac.com', '10/7/1987', '11/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hortensia', 'Halfacre', 'hhalfacreo9@mtv.com', '1/28/1989', '7/8/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aime', 'Ibberson', 'aibbersonoa@liveinternet.ru', '4/17/1976', '7/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Joelynn', 'Walcot', 'jwalcotob@posterous.com', '1/16/1979', '12/10/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Octavius', 'Devitt', 'odevittoc@qq.com', '12/21/1969', '10/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hope', 'Garahan', 'hgarahanod@istockphoto.com', '12/23/1990', '5/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brandtr', 'Chellenham', 'bchellenhamoe@harvard.edu', '4/8/1984', '4/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jedd', 'Hagland', 'jhaglandof@europa.eu', '8/27/1983', '6/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Richmond', 'Tolle', 'rtolleog@jalbum.net', '5/25/1961', '3/21/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ardelis', 'Culy', 'aculyoh@flavors.me', '12/14/1988', '10/6/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Flss', 'Garlic', 'fgarlicoi@hp.com', '6/27/1949', '3/3/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clementine', 'Le feaver', 'clefeaveroj@wikia.com', '4/10/1956', '10/6/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Karole', 'Wiggett', 'kwiggettok@bizjournals.com', '3/25/1941', '7/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tiffie', 'Terbrug', 'tterbrugol@marketwatch.com', '6/27/1976', '5/29/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Korella', 'Titford', 'ktitfordom@opensource.org', '10/16/2006', '7/31/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gill', 'Mellem', 'gmellemon@walmart.com', '7/7/1971', '9/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Celestina', 'Ferrick', 'cferrickoo@jigsy.com', '10/17/1948', '1/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ermentrude', 'Keasey', 'ekeaseyop@flavors.me', '11/23/1958', '3/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Charyl', 'Pughsley', 'cpughsleyoq@blogger.com', '8/22/1975', '1/24/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Frayda', 'Grover', 'fgroveror@meetup.com', '5/31/1981', '4/25/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kiele', 'De Santos', 'kdesantosos@ehow.com', '3/4/1977', '7/8/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Beilul', 'Cabena', 'bcabenaot@storify.com', '2/18/1956', '2/21/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gretal', 'Pogue', 'gpogueou@senate.gov', '12/11/1949', '9/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Devy', 'Jacques', 'djacquesov@bloglovin.com', '7/2/1973', '1/5/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ofilia', 'Sams', 'osamsow@umn.edu', '6/9/2001', '12/13/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lari', 'Shortcliffe', 'lshortcliffeox@unesco.org', '5/5/1979', '7/28/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cart', 'Bollom', 'cbollomoy@quantcast.com', '10/30/1987', '3/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bathsheba', 'McDowall', 'bmcdowalloz@symantec.com', '10/13/1966', '8/28/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Aleda', 'Hardington', 'ahardingtonp0@mail.ru', '8/22/1942', '10/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Orly', 'Grenkov', 'ogrenkovp1@oakley.com', '3/14/1941', '6/3/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Torin', 'Enders', 'tendersp2@canalblog.com', '11/8/1991', '6/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cordy', 'Flinders', 'cflindersp3@engadget.com', '7/24/1970', '1/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Felike', 'Pablos', 'fpablosp4@plala.or.jp', '9/6/1951', '1/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ludwig', 'Gradley', 'lgradleyp5@trellian.com', '9/18/1970', '6/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Travers', 'Leadbetter', 'tleadbetterp6@senate.gov', '8/27/1983', '2/15/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Janaya', 'Lindenfeld', 'jlindenfeldp7@baidu.com', '5/16/2006', '4/25/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cherish', 'Stening', 'csteningp8@comcast.net', '10/27/1997', '3/24/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ferdinand', 'McMonies', 'fmcmoniesp9@chronoengine.com', '11/14/1973', '8/14/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Larissa', 'Pilgram', 'lpilgrampa@hud.gov', '11/11/1968', '10/22/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zahara', 'Klimuk', 'zklimukpb@uiuc.edu', '11/27/1952', '9/15/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gillian', 'Meenan', 'gmeenanpc@theatlantic.com', '8/7/1998', '3/4/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Milton', 'Sharvell', 'msharvellpd@ft.com', '12/13/1940', '5/12/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Flore', 'Zapata', 'fzapatape@simplemachines.org', '2/15/1953', '7/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Fawne', 'Savoury', 'fsavourypf@plala.or.jp', '1/8/1960', '10/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Chaddy', 'Cobbled', 'ccobbledpg@deliciousdays.com', '12/30/2007', '11/19/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brita', 'Sarll', 'bsarllph@wikimedia.org', '2/7/2002', '5/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brigid', 'Lednor', 'blednorpi@prlog.org', '12/25/1989', '8/5/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giacobo', 'Chattelaine', 'gchattelainepj@livejournal.com', '2/27/1943', '11/15/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Halette', 'Okey', 'hokeypk@blogger.com', '1/21/1964', '5/5/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Andra', 'Presnail', 'apresnailpl@about.me', '5/12/1965', '5/24/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Shauna', 'Collings', 'scollingspm@parallels.com', '1/29/1984', '10/23/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Agnes', 'Rosendale', 'arosendalepn@fc2.com', '12/22/2007', '4/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Juieta', 'Brydie', 'jbrydiepo@shop-pro.jp', '12/31/1985', '11/5/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Myrah', 'Eagling', 'meaglingpp@springer.com', '12/10/1967', '8/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gawain', 'Elecum', 'gelecumpq@miibeian.gov.cn', '7/29/1988', '8/15/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cob', 'Epsley', 'cepsleypr@ihg.com', '8/11/2003', '5/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cullen', 'Trayte', 'ctrayteps@soundcloud.com', '4/19/2007', '7/16/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Christie', 'Langmaid', 'clangmaidpt@prweb.com', '11/7/1976', '5/22/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Adrian', 'Rosencrantz', 'arosencrantzpu@newsvine.com', '11/24/1952', '7/19/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Crystie', 'McMillan', 'cmcmillanpv@discuz.net', '3/22/2006', '4/16/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dee', 'Kneath', 'dkneathpw@google.nl', '7/2/2005', '4/30/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hilario', 'Tomasek', 'htomasekpx@networksolutions.com', '6/17/1994', '5/12/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jacenta', 'Fillon', 'jfillonpy@bbc.co.uk', '11/24/1999', '3/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Alyce', 'Carvill', 'acarvillpz@nytimes.com', '3/25/1973', '11/27/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Smith', 'Georgievski', 'sgeorgievskiq0@youku.com', '4/20/1958', '5/11/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ashien', 'Load', 'aloadq1@earthlink.net', '4/5/2004', '9/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Nolana', 'Rivers', 'nriversq2@wufoo.com', '5/21/1995', '9/29/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brooke', 'Whittles', 'bwhittlesq3@china.com.cn', '3/15/1985', '9/30/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Corbie', 'Twallin', 'ctwallinq4@blog.com', '7/19/2006', '11/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cecil', 'Benois', 'cbenoisq5@desdev.cn', '3/2/1982', '8/17/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gaile', 'Itzik', 'gitzikq6@java.com', '6/20/1987', '8/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vassili', 'Angus', 'vangusq7@buzzfeed.com', '2/13/1971', '12/12/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Bradley', 'Woolager', 'bwoolagerq8@google.es', '2/22/1968', '6/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giuseppe', 'Crumby', 'gcrumbyq9@comcast.net', '4/20/1998', '5/6/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Montgomery', 'Whapples', 'mwhapplesqa@ibm.com', '2/15/1943', '12/7/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Glenden', 'Dunkerley', 'gdunkerleyqb@bluehost.com', '3/27/1995', '3/21/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Cherey', 'Cuschieri', 'ccuschieriqc@techcrunch.com', '9/5/1968', '9/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Amelie', 'Shernock', 'ashernockqd@huffingtonpost.com', '3/31/2006', '4/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Courtenay', 'Heathwood', 'cheathwoodqe@stanford.edu', '2/15/1953', '12/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeff', 'Ianne', 'jianneqf@gmpg.org', '11/19/1976', '2/14/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Verney', 'Hehnke', 'vhehnkeqg@patch.com', '10/16/1995', '2/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Melinda', 'Tuther', 'mtutherqh@google.pl', '6/5/1999', '9/22/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Delano', 'Brito', 'dbritoqi@xing.com', '8/2/1976', '10/6/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gisele', 'Driscoll', 'gdriscollqj@live.com', '3/26/2008', '11/1/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Augustina', 'Akaster', 'aakasterqk@indiatimes.com', '6/1/2001', '10/27/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kienan', 'Burgh', 'kburghql@earthlink.net', '4/4/1983', '12/11/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gabbie', 'Shepperd', 'gshepperdqm@php.net', '7/4/2002', '6/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Loree', 'Aymer', 'laymerqn@si.edu', '5/8/1977', '3/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kristien', 'Redsall', 'kredsallqo@mac.com', '4/21/1996', '1/24/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brett', 'Lethieulier', 'blethieulierqp@harvard.edu', '1/2/1987', '10/20/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sammy', 'Hedgeley', 'shedgeleyqq@over-blog.com', '4/30/1956', '4/18/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tripp', 'Barlas', 'tbarlasqr@mozilla.org', '1/17/1964', '11/23/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Sharity', 'Willisch', 'swillischqs@noaa.gov', '3/28/1995', '4/2/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Lucais', 'Fabb', 'lfabbqt@godaddy.com', '9/20/1970', '11/26/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Brittani', 'Kestin', 'bkestinqu@hhs.gov', '7/26/2001', '12/9/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Robinson', 'Munnion', 'rmunnionqv@opera.com', '4/2/1951', '1/29/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Gilly', 'Hanne', 'ghanneqw@sakura.ne.jp', '11/30/2004', '8/21/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dorry', 'Yeude', 'dyeudeqx@bloomberg.com', '3/27/1972', '7/4/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Zia', 'Alcalde', 'zalcaldeqy@flickr.com', '1/13/2009', '11/12/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Wesley', 'Baert', 'wbaertqz@over-blog.com', '1/29/1986', '7/12/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Norah', 'Gilfillan', 'ngilfillanr0@altervista.org', '6/2/2005', '5/6/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Dell', 'Surmeyer', 'dsurmeyerr1@nyu.edu', '9/12/2000', '3/18/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Etty', 'Matijevic', 'ematijevicr2@about.me', '8/5/1972', '12/2/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Rosina', 'Farfolomeev', 'rfarfolomeevr3@storify.com', '6/26/1995', '11/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Minne', 'Renish', 'mrenishr4@scientificamerican.com', '7/12/1983', '2/24/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Noell', 'Cummine', 'ncumminer5@nature.com', '1/15/1986', '3/10/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Waylen', 'Stallworthy', 'wstallworthyr6@spiegel.de', '9/3/1976', '1/28/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Marietta', 'Tufts', 'mtuftsr7@devhub.com', '4/29/2003', '12/18/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Filberte', 'Crowdy', 'fcrowdyr8@unesco.org', '7/24/1954', '12/27/2021'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Philipa', 'Munnings', 'pmunningsr9@livejournal.com', '1/6/1988', '9/23/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Linnet', 'Janouch', 'ljanouchra@cnbc.com', '1/6/1961', '2/10/2024'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Oralee', 'Saller', 'osallerrb@spiegel.de', '4/21/1963', '5/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Morly', 'Islep', 'misleprc@nps.gov', '2/3/1992', '9/13/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Guillermo', 'Veitch', 'gveitchrd@flickr.com', '5/2/1981', '6/20/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arther', 'Derks', 'aderksre@dailymotion.com', '9/19/1994', '9/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Winnifred', 'Le Clercq', 'wleclercqrf@blogspot.com', '10/30/1948', '10/2/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Ellene', 'Ragborne', 'eragbornerg@cargocollective.com', '4/7/2008', '1/3/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Christabella', 'Clutten', 'ccluttenrh@seattletimes.com', '11/29/1955', '3/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Clint', 'Hallex', 'challexri@friendfeed.com', '12/17/1982', '10/21/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Giraud', 'Monelle', 'gmonellerj@github.com', '1/10/1959', '11/8/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Tulley', 'Ausher', 'tausherrk@harvard.edu', '11/30/1974', '7/22/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Delinda', 'Wilkowski', 'dwilkowskirl@google.de', '12/26/1967', '1/25/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Conway', 'Jurczyk', 'cjurczykrm@yale.edu', '5/10/1983', '11/3/2023'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Vally', 'Muscat', 'vmuscatrn@house.gov', '7/16/1964', '12/13/2020'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Hillery', 'Liddard', 'hliddardro@bloomberg.com', '5/24/1956', '2/11/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Kent', 'Kelso', 'kkelsorp@seattletimes.com', '9/11/1979', '2/7/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Arlyne', 'Tunnicliffe', 'atunniclifferq@china.com.cn', '6/10/1968', '6/27/2022'); +insert into Borrowers (firstName, lastName, email, dateOfBirth, membershipDate) values ('Jeremie', 'Ruslin', 'jruslinrr@mapy.cz', '3/16/1958', '12/9/2021'); diff --git a/seeding/loansTableSeeding-DML.sql b/seeding/loansTableSeeding-DML.sql new file mode 100644 index 0000000..7be36e6 --- /dev/null +++ b/seeding/loansTableSeeding-DML.sql @@ -0,0 +1,1000 @@ +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/27/2020', '4/26/2020', null, 776, 803); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2022', '3/21/2024', '10/12/2022', 973, 136); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2023', '7/8/2022', null, 196, 38); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/18/2020', '8/23/2023', '6/19/2022', 437, 807); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2022', '1/27/2021', '5/23/2021', 65, 910); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/23/2021', '12/29/2023', null, 509, 945); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/31/2023', '4/27/2021', '12/24/2021', 76, 285); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/8/2022', '3/26/2022', '3/10/2022', 770, 780); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/18/2021', '9/22/2023', null, 82, 933); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/2/2021', '6/18/2020', '4/16/2023', 324, 506); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/30/2020', '7/13/2020', null, 590, 309); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/11/2023', '8/30/2020', '1/11/2024', 515, 450); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/22/2023', '9/15/2020', null, 99, 528); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/31/2020', '7/6/2022', null, 618, 829); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2024', '8/16/2020', null, 947, 643); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/21/2023', '1/13/2023', '7/9/2023', 330, 133); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/12/2020', '5/31/2022', '6/15/2020', 314, 697); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/12/2020', '4/7/2024', '1/27/2022', 468, 584); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2023', '1/17/2024', null, 664, 112); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/12/2021', '2/28/2022', null, 383, 52); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2023', '8/6/2023', '8/9/2022', 158, 940); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/14/2020', '3/12/2022', '6/18/2023', 473, 125); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/11/2022', '4/15/2022', '4/13/2021', 726, 10); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2020', '3/11/2021', null, 85, 547); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2022', '5/28/2021', null, 830, 163); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/9/2023', '12/19/2023', '4/12/2024', 363, 767); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/20/2022', '8/26/2021', '5/25/2022', 524, 803); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/7/2021', '3/23/2024', '5/10/2022', 585, 242); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2023', '7/25/2022', null, 539, 725); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/19/2021', '7/3/2022', null, 222, 816); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/29/2023', '9/25/2022', '2/7/2022', 691, 574); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2023', '4/9/2023', '7/22/2023', 552, 303); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/1/2020', '2/25/2021', null, 166, 358); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/20/2023', '9/24/2020', null, 636, 184); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/9/2022', '10/26/2022', null, 935, 854); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2022', '11/20/2021', null, 31, 992); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2021', '6/6/2021', null, 672, 292); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/29/2021', '5/27/2023', null, 147, 638); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/8/2021', '1/17/2024', '6/28/2021', 679, 149); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/8/2022', '12/26/2020', null, 576, 141); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/28/2021', '10/28/2020', '11/29/2023', 649, 871); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/27/2020', '7/31/2020', null, 644, 770); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/9/2023', '4/10/2021', null, 957, 563); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/17/2022', '9/6/2021', null, 920, 487); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/27/2021', '6/2/2020', null, 104, 437); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/27/2020', '7/8/2023', '12/22/2021', 110, 22); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/23/2021', '2/5/2023', null, 986, 280); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/11/2022', '10/15/2021', '3/10/2023', 657, 436); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/8/2023', '12/19/2023', '9/23/2023', 571, 358); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/2/2021', '6/6/2020', null, 396, 607); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/11/2023', '3/18/2023', null, 834, 814); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2022', '7/12/2023', '10/1/2021', 520, 133); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2021', '12/26/2020', null, 520, 429); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/13/2021', '7/19/2022', '1/15/2024', 405, 471); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/1/2022', '4/28/2023', '3/12/2022', 323, 377); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/30/2020', '3/20/2022', '3/26/2023', 328, 135); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/9/2020', '1/22/2022', null, 87, 996); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/6/2021', '3/31/2024', '1/2/2022', 912, 136); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/5/2020', '7/18/2022', null, 793, 526); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/22/2024', '12/17/2020', null, 629, 655); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2020', '12/31/2023', '3/29/2023', 34, 421); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/23/2021', '10/30/2023', '6/14/2021', 655, 234); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/14/2021', '8/3/2020', '12/24/2022', 227, 840); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2020', '2/22/2021', '12/7/2021', 37, 443); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/13/2023', '9/17/2021', '9/15/2023', 422, 881); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2024', '6/30/2022', '11/7/2022', 502, 89); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/21/2020', '4/3/2022', '10/26/2023', 932, 123); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/11/2022', '12/17/2022', '6/27/2022', 808, 804); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/13/2022', '5/26/2020', null, 871, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/29/2023', '8/11/2020', '3/30/2023', 622, 974); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/6/2021', '7/10/2020', '5/10/2020', 400, 390); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2023', '3/24/2021', null, 946, 576); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2023', '2/26/2021', null, 482, 598); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/15/2020', '6/17/2021', '1/13/2022', 207, 184); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/28/2020', '2/14/2024', '7/13/2020', 801, 583); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/26/2023', '4/26/2023', null, 927, 159); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/15/2021', '8/29/2023', '12/29/2023', 258, 754); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/6/2022', '2/25/2022', null, 89, 781); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/10/2020', '7/23/2020', '3/14/2024', 354, 757); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/6/2022', '7/27/2022', '11/8/2022', 136, 873); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/4/2023', '1/1/2024', '12/9/2020', 727, 848); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2023', '3/13/2024', '3/11/2023', 894, 451); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/10/2021', '5/23/2023', '6/10/2020', 827, 332); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/14/2023', '8/13/2023', '10/25/2020', 55, 503); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/27/2022', '9/17/2022', null, 870, 291); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/27/2023', '4/22/2021', null, 774, 773); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/8/2021', '11/4/2023', null, 630, 492); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/7/2020', '7/23/2021', '6/21/2022', 87, 177); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/24/2021', '4/4/2024', '6/24/2020', 954, 747); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/10/2023', '6/21/2020', null, 729, 169); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/23/2020', '2/7/2024', '6/20/2020', 993, 389); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/22/2023', '10/20/2022', null, 867, 424); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/18/2020', '12/24/2020', null, 566, 283); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/27/2023', '5/14/2021', null, 743, 110); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/17/2021', '5/11/2020', null, 729, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/12/2021', '11/15/2021', null, 244, 317); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2021', '2/5/2021', '7/24/2020', 11, 121); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/24/2021', '6/29/2023', null, 800, 734); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/25/2020', '9/12/2022', null, 931, 676); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/31/2021', '12/8/2023', '12/14/2023', 272, 295); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/24/2021', '4/23/2020', '1/8/2024', 720, 256); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/4/2020', '9/18/2020', '6/20/2021', 89, 815); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/29/2022', '5/18/2021', '9/18/2020', 183, 994); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/14/2022', '6/17/2023', '2/18/2024', 913, 413); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/12/2021', '2/11/2024', null, 616, 234); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2020', '1/17/2021', null, 155, 261); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/1/2021', '7/24/2022', null, 909, 856); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/16/2022', '7/20/2022', null, 370, 895); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/2/2020', '6/26/2020', null, 489, 795); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/24/2022', '3/12/2024', null, 350, 933); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2020', '1/19/2023', '6/29/2021', 117, 68); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2023', '4/5/2023', null, 329, 675); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2023', '10/24/2022', '6/26/2020', 693, 510); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/15/2020', '6/6/2021', null, 611, 804); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2022', '5/13/2021', '6/20/2021', 900, 267); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/15/2023', '8/28/2023', null, 783, 662); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/5/2022', '5/14/2021', null, 471, 166); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/10/2020', '10/27/2021', null, 340, 330); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/30/2020', '7/31/2020', '10/13/2021', 28, 892); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/5/2024', '7/15/2023', '3/28/2024', 963, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/25/2020', '10/19/2023', '8/4/2022', 824, 892); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/13/2024', '8/6/2020', '10/2/2020', 925, 410); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/1/2023', '4/24/2020', null, 497, 822); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/13/2022', '8/25/2020', '10/28/2020', 707, 971); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/24/2022', '8/5/2023', null, 19, 841); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/18/2023', '1/17/2024', '5/31/2020', 544, 217); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/9/2022', '5/16/2021', '3/24/2021', 874, 39); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/21/2023', '7/7/2023', null, 689, 842); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/26/2023', '6/1/2020', null, 253, 494); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/2/2021', '10/7/2023', '6/4/2023', 847, 990); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/27/2022', '11/25/2023', '1/27/2021', 239, 433); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/1/2020', '1/21/2023', '7/30/2021', 411, 941); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/19/2023', '4/21/2023', null, 828, 94); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/12/2023', '4/14/2023', null, 159, 641); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/27/2021', '4/24/2023', '5/15/2022', 678, 574); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/10/2023', '10/17/2021', null, 808, 599); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/6/2023', '9/5/2023', '3/30/2024', 901, 131); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/1/2023', '5/25/2020', '11/25/2023', 344, 262); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/1/2020', '2/21/2024', '12/31/2023', 388, 487); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/6/2023', '2/9/2024', null, 962, 612); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/8/2020', '8/21/2020', '11/24/2023', 763, 108); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2021', '8/27/2021', '1/24/2023', 866, 983); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/20/2021', '5/8/2022', '6/13/2020', 293, 538); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2023', '7/29/2023', '4/2/2021', 183, 260); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/13/2020', '10/7/2021', '11/17/2023', 155, 976); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/18/2020', '1/23/2022', '2/23/2023', 548, 357); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/9/2021', '2/27/2022', null, 879, 761); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/17/2023', '12/29/2023', '3/18/2024', 497, 421); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/22/2020', '11/3/2023', '7/6/2021', 903, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/19/2023', '1/5/2022', null, 615, 70); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2023', '7/11/2022', '4/19/2021', 140, 616); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/20/2021', '12/26/2022', null, 831, 98); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/21/2024', '9/19/2022', null, 159, 927); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/4/2022', '3/26/2022', null, 314, 320); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/7/2022', '4/6/2023', null, 393, 933); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/22/2022', '11/15/2023', '3/18/2023', 80, 673); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/16/2020', '8/3/2022', null, 47, 688); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/6/2020', '10/26/2020', '8/3/2023', 126, 703); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/8/2022', '5/30/2020', '9/22/2022', 870, 911); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/26/2023', '5/30/2020', '11/23/2023', 456, 134); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/14/2023', '11/5/2021', null, 67, 873); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/6/2020', '2/29/2024', null, 183, 658); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/31/2022', '7/2/2022', null, 192, 556); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/12/2023', '6/1/2023', '11/16/2023', 991, 913); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/25/2021', '5/16/2020', null, 834, 442); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/29/2020', '5/19/2023', null, 686, 369); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/15/2022', '3/18/2021', '5/14/2022', 222, 841); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/1/2020', '4/30/2020', null, 997, 793); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2020', '7/2/2020', null, 175, 425); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/21/2021', '6/22/2020', null, 813, 142); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/18/2023', '8/19/2020', null, 533, 400); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/6/2021', '10/15/2023', null, 319, 974); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/8/2020', '11/12/2023', null, 978, 18); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/15/2024', '3/5/2023', null, 330, 109); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/10/2024', '9/25/2020', null, 962, 711); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/7/2021', '11/9/2021', '8/4/2022', 653, 60); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/5/2022', '5/26/2020', '4/3/2022', 14, 378); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/5/2021', '11/13/2021', '3/2/2021', 869, 722); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/12/2021', '10/8/2022', null, 846, 5); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/3/2022', '11/19/2021', '12/15/2020', 982, 710); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/4/2022', '2/13/2023', '12/7/2023', 989, 413); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/30/2023', '8/16/2022', null, 470, 990); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/30/2021', '6/23/2023', '12/24/2021', 584, 374); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2023', '1/21/2024', '7/2/2020', 523, 216); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/3/2021', '9/16/2023', '7/14/2021', 559, 839); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/12/2023', '2/2/2022', '8/1/2022', 15, 754); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/21/2021', '11/28/2021', '1/15/2023', 233, 27); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/13/2020', '3/5/2021', '9/1/2022', 835, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/10/2021', '7/13/2023', '2/18/2023', 886, 597); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2024', '2/15/2023', '2/20/2024', 564, 909); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2023', '12/5/2020', null, 956, 905); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/1/2020', '5/22/2023', '4/16/2023', 94, 285); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/6/2023', '10/12/2022', '12/25/2022', 597, 335); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/25/2020', '9/29/2020', '9/7/2020', 186, 470); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/25/2023', '9/2/2022', '11/2/2020', 279, 70); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/19/2021', '4/24/2023', '4/5/2023', 320, 484); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/31/2020', '5/21/2022', null, 552, 196); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/30/2022', '12/9/2022', null, 664, 86); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2023', '11/11/2022', null, 250, 165); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/19/2020', '12/16/2023', null, 778, 907); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/4/2022', '9/12/2022', '11/2/2022', 304, 559); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/30/2023', '10/31/2021', '2/21/2023', 807, 137); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/3/2023', '3/3/2024', '11/6/2023', 151, 996); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2021', '1/8/2024', '5/16/2022', 261, 744); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/22/2024', '2/14/2023', null, 431, 469); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/12/2022', '6/4/2023', '9/10/2021', 602, 7); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/2/2024', '11/1/2022', '3/22/2024', 625, 937); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/2/2021', '4/30/2022', null, 651, 549); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/8/2020', '8/23/2022', null, 713, 681); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2021', '12/26/2023', '11/28/2020', 580, 950); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/6/2021', '8/4/2023', null, 785, 56); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/3/2021', '2/12/2021', null, 277, 141); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/21/2021', '4/20/2020', '9/7/2020', 655, 454); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/12/2022', '1/20/2024', '11/27/2020', 666, 338); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/1/2022', '6/8/2023', '8/14/2022', 916, 671); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2021', '2/10/2022', '9/24/2023', 540, 786); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/26/2022', '8/26/2021', '6/26/2021', 382, 751); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/18/2021', '10/21/2023', '3/8/2021', 561, 502); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/20/2021', '7/17/2020', null, 855, 539); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/3/2023', '8/21/2022', null, 936, 836); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/12/2021', '1/26/2023', null, 742, 50); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/10/2020', '8/27/2021', '7/6/2020', 516, 30); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/12/2022', '7/10/2020', null, 319, 461); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/21/2020', '1/23/2024', '10/8/2020', 221, 807); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/8/2021', '5/4/2020', '3/18/2022', 337, 562); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/20/2020', '11/15/2023', null, 609, 367); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2021', '7/2/2023', '3/2/2023', 937, 6); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2024', '5/20/2020', null, 522, 70); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/7/2022', '3/17/2021', '6/23/2023', 316, 672); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/19/2022', '1/29/2024', '6/13/2022', 477, 59); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/24/2021', '5/12/2020', '12/6/2022', 489, 976); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/4/2022', '11/30/2023', '8/22/2020', 519, 38); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/31/2022', '5/26/2020', null, 667, 468); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/16/2024', '8/29/2022', '2/16/2024', 53, 762); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/28/2023', '2/27/2023', '2/7/2022', 56, 461); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/26/2022', '8/23/2022', '2/27/2023', 984, 18); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/7/2022', '8/15/2020', null, 215, 314); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/18/2020', '11/8/2023', null, 418, 81); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/29/2023', '5/23/2023', '1/2/2024', 607, 854); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/27/2024', '3/20/2024', '10/30/2021', 971, 811); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/3/2020', '5/10/2023', '2/19/2023', 202, 337); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/3/2024', '7/14/2022', null, 308, 529); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/8/2021', '12/20/2021', null, 525, 780); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/15/2021', '11/11/2022', null, 123, 74); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/4/2022', '5/10/2022', '8/20/2020', 55, 878); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/20/2020', '10/25/2021', '3/12/2021', 94, 218); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/2/2021', '1/27/2021', null, 818, 348); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/21/2023', '3/26/2021', null, 578, 535); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/18/2022', '7/29/2021', null, 487, 639); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/28/2021', '11/22/2021', '4/1/2021', 43, 530); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/26/2022', '9/5/2023', null, 502, 334); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2022', '1/16/2021', '5/19/2022', 950, 173); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2021', '3/12/2021', '6/21/2020', 248, 36); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2022', '4/23/2021', null, 792, 429); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/24/2023', '10/31/2020', '1/27/2023', 302, 242); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2020', '7/9/2022', null, 797, 334); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/18/2024', '9/9/2021', '9/2/2022', 25, 324); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/6/2023', '2/7/2021', '6/21/2021', 963, 558); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/22/2022', '6/12/2020', '11/29/2020', 871, 119); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/25/2021', '5/15/2021', null, 207, 939); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2021', '3/3/2024', '1/22/2022', 306, 569); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/20/2021', '12/30/2023', '9/15/2020', 976, 258); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/29/2024', '5/21/2021', '12/18/2020', 183, 936); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/18/2022', '10/12/2022', null, 201, 226); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/10/2022', '10/29/2021', '10/5/2023', 148, 680); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/16/2022', '4/26/2020', null, 795, 670); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/2/2020', '6/17/2021', '6/2/2022', 940, 982); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/10/2023', '11/12/2021', '2/8/2024', 52, 943); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/7/2024', '3/14/2024', '5/10/2023', 572, 990); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/23/2020', '7/6/2023', '4/19/2023', 72, 346); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/13/2022', '11/19/2021', '11/24/2023', 596, 379); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/27/2022', '4/8/2022', '9/30/2023', 80, 257); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/12/2021', '9/8/2023', null, 72, 393); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/16/2021', '4/19/2021', null, 468, 299); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/14/2023', '4/1/2021', null, 622, 941); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/18/2022', '3/15/2024', '1/13/2023', 543, 248); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/12/2023', '11/27/2021', '9/17/2023', 373, 572); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/27/2024', '10/29/2022', '3/15/2022', 579, 162); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/24/2020', '12/24/2023', null, 990, 529); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/3/2020', '11/20/2023', null, 509, 393); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/28/2021', '2/19/2024', '7/16/2020', 926, 932); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/5/2022', '9/13/2023', null, 848, 425); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/21/2023', '3/24/2024', '11/5/2021', 564, 956); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2023', '8/16/2023', '10/27/2021', 949, 175); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2024', '8/21/2022', null, 951, 267); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/27/2022', '5/14/2022', null, 592, 426); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/9/2021', '2/1/2024', '2/22/2021', 523, 259); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/13/2020', '11/16/2023', null, 246, 47); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/11/2023', '12/7/2021', '7/24/2020', 237, 832); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/3/2024', '8/9/2021', null, 4, 924); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2022', '1/16/2023', null, 95, 86); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/16/2022', '8/12/2023', '4/20/2022', 398, 482); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/21/2022', '4/26/2020', '3/3/2022', 664, 458); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/3/2023', '1/22/2022', '7/19/2022', 503, 973); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/26/2020', '7/29/2020', '4/7/2023', 257, 617); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/22/2022', '8/26/2023', '8/1/2020', 892, 556); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/20/2021', '2/5/2022', null, 115, 263); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/27/2020', '12/28/2022', '3/13/2022', 799, 349); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/29/2023', '10/30/2022', null, 414, 616); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/25/2020', '12/21/2023', '9/21/2021', 778, 313); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/2/2021', '6/7/2023', null, 969, 753); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/20/2023', '6/20/2021', null, 99, 351); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/16/2021', '1/22/2022', '1/18/2021', 50, 14); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/14/2023', '1/3/2024', '1/5/2021', 941, 658); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/30/2020', '10/10/2022', null, 576, 19); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/30/2020', '12/24/2023', null, 538, 214); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/7/2022', '2/22/2022', '5/20/2023', 24, 822); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/25/2023', '8/10/2021', '12/2/2020', 308, 905); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/29/2023', '6/29/2022', null, 761, 763); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/6/2021', '3/12/2021', '8/17/2023', 778, 259); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/17/2021', '3/29/2021', '11/15/2022', 715, 779); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2023', '2/3/2022', null, 845, 989); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2023', '9/17/2020', null, 426, 838); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/28/2020', '1/23/2021', '10/26/2021', 319, 590); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/3/2023', '8/23/2023', '10/9/2021', 701, 40); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/1/2022', '6/26/2022', '9/6/2023', 341, 149); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/4/2022', '11/5/2022', '7/4/2021', 98, 646); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/27/2023', '2/28/2024', '4/12/2021', 895, 302); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/17/2022', '5/20/2022', '1/22/2021', 756, 434); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/18/2021', '1/4/2024', '4/21/2023', 545, 644); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/26/2022', '7/28/2021', '8/6/2021', 137, 826); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/22/2021', '5/14/2020', '11/13/2023', 173, 604); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/9/2022', '2/9/2022', null, 871, 691); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/19/2022', '7/21/2020', null, 390, 726); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/16/2023', '2/14/2022', '3/14/2024', 117, 340); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/17/2020', '10/16/2023', '11/27/2022', 239, 964); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/15/2023', '5/15/2020', '7/27/2020', 116, 401); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/4/2023', '2/4/2023', '5/27/2023', 48, 794); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/27/2022', '2/27/2021', '2/1/2021', 570, 395); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2022', '12/19/2023', '1/18/2023', 572, 907); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/12/2020', '9/10/2023', '3/21/2024', 775, 772); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2021', '7/15/2021', null, 816, 477); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2021', '3/21/2024', '2/13/2021', 556, 128); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2024', '3/29/2023', null, 357, 486); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/25/2023', '1/18/2022', '6/26/2022', 726, 374); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/3/2022', '5/5/2022', null, 511, 329); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2021', '8/14/2023', null, 329, 620); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/20/2020', '1/4/2021', null, 704, 265); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/1/2021', '10/22/2023', '12/19/2021', 147, 507); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/3/2022', '9/15/2022', null, 354, 231); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/7/2021', '3/20/2024', null, 916, 681); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/3/2023', '7/13/2022', '2/7/2024', 605, 984); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/16/2020', '4/22/2023', '5/17/2022', 459, 389); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/30/2022', '7/10/2021', null, 527, 899); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/2/2022', '10/15/2023', '12/5/2020', 776, 570); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/13/2023', '12/24/2023', null, 410, 974); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/4/2021', '10/7/2021', null, 222, 744); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2021', '6/7/2021', null, 582, 632); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/22/2024', '2/20/2022', null, 242, 101); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/31/2023', '7/7/2023', null, 28, 300); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2022', '6/21/2022', '11/30/2023', 707, 385); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/21/2020', '12/17/2022', '8/30/2020', 313, 390); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/22/2020', '10/18/2023', '2/16/2023', 378, 739); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/2/2021', '2/17/2023', '5/31/2023', 754, 921); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/11/2023', '4/30/2023', '12/16/2022', 993, 273); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/11/2021', '5/19/2022', null, 80, 342); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/24/2021', '6/7/2022', null, 247, 239); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/21/2024', '4/27/2023', '4/19/2021', 335, 462); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/18/2023', '3/24/2021', null, 856, 627); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/26/2021', '8/6/2023', null, 354, 523); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/25/2023', '12/1/2023', null, 862, 441); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2020', '2/7/2024', '6/29/2022', 991, 636); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/9/2022', '5/2/2022', '10/4/2022', 95, 276); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/20/2023', '11/2/2020', '11/11/2022', 394, 681); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/6/2021', '2/26/2024', null, 23, 901); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2023', '3/1/2023', null, 67, 115); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/28/2022', '1/10/2021', null, 893, 458); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/3/2024', '5/15/2020', null, 66, 256); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/23/2021', '5/24/2020', null, 625, 129); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/6/2021', '1/12/2022', null, 630, 953); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/16/2023', '2/2/2024', '1/13/2021', 84, 943); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/3/2023', '5/2/2023', '5/19/2020', 655, 462); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2023', '5/16/2022', null, 97, 176); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/21/2022', '5/2/2020', '4/7/2022', 397, 744); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2020', '6/24/2023', '11/12/2022', 851, 196); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/22/2020', '10/31/2022', null, 1, 633); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/5/2024', '8/29/2021', '1/10/2023', 595, 785); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/6/2021', '9/16/2022', '7/11/2020', 247, 686); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/14/2021', '6/24/2021', '5/15/2021', 473, 473); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/28/2022', '12/29/2022', null, 715, 550); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/6/2022', '11/11/2022', '4/21/2021', 645, 156); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/27/2023', '5/22/2020', '5/4/2023', 156, 528); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/25/2021', '3/7/2022', '2/7/2022', 278, 869); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/15/2021', '4/13/2021', '12/28/2022', 957, 356); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/22/2024', '3/4/2022', null, 750, 846); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/27/2024', '5/4/2021', null, 878, 870); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2022', '5/30/2023', null, 376, 389); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/8/2020', '2/20/2023', '5/7/2020', 140, 503); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/1/2022', '9/13/2023', null, 547, 835); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/9/2023', '5/15/2023', '5/18/2023', 434, 408); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2022', '1/26/2023', null, 362, 720); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2022', '8/18/2022', '11/28/2021', 39, 504); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/15/2020', '3/25/2022', '7/11/2020', 944, 236); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/2/2023', '11/4/2020', null, 87, 623); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2023', '7/9/2020', null, 34, 347); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/12/2020', '3/20/2024', '1/28/2022', 780, 651); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/11/2020', '7/12/2021', '10/12/2020', 446, 817); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/26/2022', '9/20/2020', '3/3/2021', 161, 470); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/23/2021', '9/8/2020', null, 23, 347); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2024', '6/16/2023', '6/8/2020', 126, 526); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/24/2022', '8/2/2021', '8/12/2020', 878, 920); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/20/2021', '5/24/2020', '3/28/2022', 652, 852); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/7/2021', '5/16/2023', null, 911, 283); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/2/2024', '11/12/2023', '3/14/2023', 831, 868); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/28/2023', '7/29/2023', null, 854, 990); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/18/2023', '6/30/2021', '7/13/2021', 579, 6); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/6/2021', '2/29/2024', '3/10/2024', 549, 696); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/24/2024', '5/14/2020', '7/18/2023', 693, 71); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/25/2021', '12/17/2022', '2/12/2024', 513, 34); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/5/2022', '12/9/2023', null, 552, 271); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/22/2022', '4/29/2022', '5/21/2022', 559, 401); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/6/2022', '12/20/2020', '1/1/2023', 859, 307); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/3/2022', '5/18/2021', '9/16/2021', 809, 527); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2021', '2/15/2021', null, 136, 652); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2021', '12/5/2020', '12/8/2021', 675, 361); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/13/2020', '7/17/2022', '11/4/2023', 580, 725); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/1/2021', '5/9/2023', '7/26/2022', 509, 513); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2021', '11/3/2022', '4/27/2023', 888, 118); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/28/2020', '5/25/2021', '1/30/2024', 202, 266); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/24/2020', '7/8/2023', '8/26/2021', 769, 784); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/15/2022', '6/22/2022', '12/2/2022', 578, 645); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/11/2022', '7/24/2023', '6/8/2022', 26, 259); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/14/2021', '10/28/2022', '10/28/2023', 928, 441); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2021', '5/22/2023', '5/31/2022', 206, 965); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2023', '4/9/2024', '6/9/2020', 77, 492); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2022', '8/14/2021', null, 420, 282); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/4/2022', '6/27/2020', '8/24/2020', 671, 420); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/13/2021', '4/7/2024', null, 326, 629); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/27/2021', '3/17/2022', '7/24/2023', 594, 242); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/4/2022', '6/6/2022', '5/14/2020', 810, 648); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/20/2021', '8/29/2021', null, 234, 432); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/2/2021', '9/29/2023', '3/29/2024', 628, 537); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/14/2022', '10/5/2021', null, 289, 923); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2020', '12/28/2023', null, 217, 529); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/25/2022', '10/27/2022', '2/27/2021', 702, 372); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/16/2021', '1/20/2022', null, 948, 289); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/4/2022', '2/18/2023', null, 548, 682); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/17/2021', '4/12/2024', '4/9/2023', 378, 443); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/29/2022', '6/9/2021', '10/5/2020', 435, 254); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/8/2022', '4/25/2020', '1/30/2023', 839, 625); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/28/2023', '6/15/2022', null, 843, 386); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/2/2020', '8/27/2022', '11/23/2022', 962, 1); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2024', '4/1/2024', null, 379, 248); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/6/2023', '1/19/2023', null, 479, 247); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/18/2024', '9/15/2023', '6/14/2021', 695, 3); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/5/2020', '10/19/2020', null, 516, 740); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2022', '4/5/2024', '11/2/2023', 657, 642); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/30/2023', '8/2/2021', null, 459, 167); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/7/2022', '8/28/2022', '1/17/2024', 96, 520); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/30/2020', '4/23/2022', '10/24/2022', 467, 828); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/5/2020', '3/5/2023', null, 68, 946); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/8/2024', '12/5/2020', '7/12/2021', 19, 471); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/9/2023', '3/22/2022', '1/28/2023', 260, 361); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/6/2021', '3/10/2021', '4/15/2021', 834, 797); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/3/2021', '3/10/2022', '11/16/2021', 473, 932); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2021', '8/18/2023', '5/31/2023', 43, 377); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/3/2023', '4/23/2023', '9/7/2022', 769, 33); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/21/2023', '10/18/2021', '11/16/2022', 298, 897); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2023', '9/5/2021', '8/5/2020', 665, 892); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/22/2022', '1/9/2023', null, 443, 836); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/26/2023', '6/18/2020', null, 964, 293); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/22/2024', '1/19/2022', '8/26/2022', 505, 945); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/14/2023', '1/10/2022', '1/3/2024', 905, 114); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/11/2020', '10/4/2021', null, 693, 179); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/17/2021', '10/29/2021', null, 197, 549); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/22/2022', '11/16/2020', '6/9/2023', 998, 962); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/25/2023', '8/5/2020', '11/2/2021', 724, 647); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/30/2020', '7/16/2021', null, 764, 875); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/27/2021', '4/17/2023', '11/27/2021', 955, 567); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/9/2021', '3/15/2024', '11/3/2022', 125, 667); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/19/2023', '10/6/2023', null, 845, 872); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/12/2023', '9/1/2023', '3/5/2024', 784, 928); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2023', '3/1/2022', null, 172, 505); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/5/2021', '10/23/2022', null, 510, 400); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2024', '9/6/2021', null, 433, 660); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/16/2024', '1/6/2021', '10/22/2020', 181, 33); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/18/2023', '12/15/2020', null, 28, 765); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/16/2021', '8/9/2020', null, 279, 166); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/26/2022', '5/7/2022', '10/14/2021', 46, 564); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2022', '10/5/2023', null, 925, 713); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2024', '7/5/2022', '6/26/2022', 543, 783); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/14/2022', '11/21/2022', '6/7/2022', 194, 639); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2022', '12/25/2021', '5/21/2023', 844, 487); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2024', '12/28/2021', '5/13/2023', 948, 992); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/19/2023', '9/15/2023', '4/1/2022', 481, 439); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/24/2021', '5/26/2022', null, 578, 926); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/4/2024', '1/27/2022', null, 22, 702); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/5/2021', '9/13/2022', null, 439, 308); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2022', '3/20/2024', '3/3/2022', 737, 23); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/3/2023', '4/11/2023', '12/11/2023', 719, 650); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/17/2021', '9/8/2022', '4/13/2023', 200, 625); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2023', '3/22/2023', '2/10/2023', 763, 96); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2022', '11/20/2021', '4/7/2021', 508, 674); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/21/2023', '3/19/2021', '2/25/2022', 246, 366); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2024', '1/30/2024', null, 903, 713); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/24/2020', '9/16/2021', null, 299, 8); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/29/2020', '10/30/2021', null, 47, 514); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/2/2023', '10/16/2020', null, 270, 499); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/20/2023', '6/30/2021', null, 756, 242); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/9/2021', '9/25/2021', null, 931, 510); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/3/2023', '9/5/2020', null, 493, 110); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2022', '10/15/2020', null, 839, 258); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/23/2022', '10/22/2023', null, 444, 299); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/31/2022', '2/11/2022', '2/16/2022', 86, 712); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/23/2023', '8/12/2021', null, 338, 267); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/21/2022', '5/16/2022', null, 153, 471); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/1/2022', '2/10/2022', null, 427, 351); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2022', '5/7/2020', '1/25/2023', 301, 65); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/24/2022', '3/11/2022', '12/28/2023', 201, 347); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/8/2020', '9/16/2022', null, 592, 388); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/10/2023', '3/19/2022', null, 96, 513); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2022', '12/6/2023', null, 610, 272); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/8/2022', '5/5/2023', null, 648, 989); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/9/2021', '4/6/2024', null, 110, 396); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/26/2024', '12/6/2020', '6/27/2021', 26, 906); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/19/2020', '6/4/2021', '9/23/2021', 490, 955); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/6/2021', '6/15/2022', '9/29/2022', 439, 968); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/6/2023', '9/22/2020', '1/10/2023', 339, 502); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/5/2021', '8/22/2020', null, 462, 740); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2022', '11/5/2020', '4/25/2023', 798, 746); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2022', '1/8/2021', '7/13/2023', 665, 764); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/24/2024', '10/11/2023', '8/31/2020', 784, 925); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/23/2023', '4/27/2023', '9/30/2020', 602, 115); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/8/2021', '2/15/2023', null, 112, 483); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/30/2021', '5/17/2021', '7/11/2021', 485, 415); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/6/2021', '5/22/2020', '2/9/2021', 314, 785); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2023', '3/22/2021', '3/30/2024', 463, 195); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/19/2022', '12/28/2020', '7/7/2021', 845, 860); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/10/2021', '6/3/2020', '8/1/2022', 205, 662); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/17/2020', '3/17/2024', '12/29/2022', 575, 520); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/5/2020', '4/29/2022', '2/27/2021', 987, 960); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/22/2020', '12/9/2023', '6/6/2022', 304, 504); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2023', '10/19/2023', '4/13/2023', 349, 619); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/3/2022', '11/8/2022', '8/15/2022', 847, 423); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/24/2023', '6/19/2022', null, 979, 259); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/23/2022', '1/29/2023', '9/6/2021', 93, 944); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/26/2022', '8/10/2021', null, 253, 468); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/6/2021', '6/8/2020', null, 969, 213); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/27/2020', '4/9/2024', null, 416, 523); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/30/2021', '8/7/2022', '8/12/2021', 59, 694); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/18/2024', '5/11/2023', '8/12/2021', 340, 673); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/9/2021', '8/2/2021', null, 422, 567); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/22/2021', '5/28/2022', null, 749, 913); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/2/2020', '7/11/2021', null, 685, 728); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/14/2023', '6/2/2023', '2/6/2023', 151, 781); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2020', '2/18/2023', null, 214, 409); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/11/2021', '5/26/2022', '5/12/2020', 544, 629); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/7/2021', '12/2/2021', '6/19/2021', 727, 205); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/14/2023', '6/20/2023', '12/30/2021', 405, 538); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/8/2022', '12/25/2022', null, 507, 893); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/17/2023', '9/26/2022', null, 495, 574); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/26/2021', '10/1/2022', '8/28/2021', 913, 447); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/5/2022', '5/27/2023', null, 671, 866); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/21/2022', '2/28/2022', null, 881, 630); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/7/2023', '11/22/2023', null, 172, 748); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/9/2022', '11/8/2021', '5/13/2021', 233, 957); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/1/2023', '7/6/2022', '11/11/2023', 289, 343); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/30/2021', '5/31/2020', '9/23/2023', 695, 756); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2021', '12/26/2023', null, 672, 164); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/6/2022', '3/14/2024', null, 769, 59); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/13/2022', '12/15/2023', '5/12/2020', 256, 949); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/18/2021', '3/19/2022', '9/23/2023', 384, 884); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/24/2023', '6/29/2023', '3/11/2024', 32, 884); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/16/2021', '8/15/2020', null, 656, 434); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/5/2023', '4/13/2022', null, 917, 392); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/14/2024', '3/28/2022', '11/6/2023', 106, 790); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/7/2023', '12/18/2022', '8/24/2022', 420, 708); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/13/2021', '12/29/2021', '10/31/2022', 15, 39); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/23/2023', '8/23/2020', null, 488, 172); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/1/2021', '8/18/2021', null, 55, 257); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/22/2020', '9/20/2021', '12/2/2020', 63, 396); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/15/2021', '8/24/2020', null, 748, 308); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/15/2023', '10/31/2022', null, 330, 797); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/24/2023', '3/9/2022', '12/3/2020', 333, 616); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2020', '7/17/2023', '3/7/2021', 752, 638); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/15/2023', '6/22/2022', '4/6/2022', 336, 669); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/5/2023', '5/18/2023', '11/29/2023', 610, 382); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/18/2023', '10/14/2020', '4/20/2020', 858, 950); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/18/2023', '8/8/2023', '12/6/2023', 193, 315); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/10/2021', '4/27/2022', null, 768, 255); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/25/2020', '5/25/2022', null, 567, 338); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/18/2023', '10/13/2021', null, 139, 524); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/3/2024', '4/13/2022', '7/20/2021', 192, 596); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2022', '9/27/2020', '6/20/2021', 720, 824); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/9/2022', '6/30/2020', '11/30/2022', 294, 7); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/22/2022', '10/4/2023', '5/25/2021', 590, 177); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/13/2021', '8/4/2022', '5/23/2021', 373, 847); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2023', '12/9/2021', null, 364, 893); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/23/2021', '11/11/2022', '1/19/2024', 655, 336); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/21/2023', '6/22/2021', null, 997, 458); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/30/2023', '7/3/2022', null, 117, 945); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/10/2022', '8/18/2020', null, 486, 8); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/23/2023', '8/26/2021', null, 559, 586); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/17/2022', '6/14/2021', null, 40, 473); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/30/2023', '1/17/2021', '1/21/2022', 795, 626); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/26/2021', '11/8/2020', null, 315, 161); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/21/2022', '6/7/2023', '8/26/2020', 750, 68); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2023', '4/14/2022', null, 863, 939); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2022', '1/12/2023', '7/26/2021', 775, 876); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/1/2020', '4/2/2023', '8/21/2021', 379, 763); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/17/2021', '1/22/2021', null, 906, 212); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/11/2020', '9/3/2022', '4/19/2020', 809, 434); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/31/2020', '8/29/2022', '3/4/2022', 117, 849); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/4/2021', '6/13/2023', null, 750, 331); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/2/2024', '6/14/2021', null, 210, 596); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/8/2022', '1/6/2022', '1/14/2021', 134, 383); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/19/2023', '3/20/2021', null, 838, 612); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/10/2021', '9/12/2022', null, 738, 426); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/5/2022', '10/23/2022', '4/11/2023', 980, 724); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/13/2021', '5/13/2022', '11/22/2020', 921, 64); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/1/2022', '5/12/2021', '8/13/2020', 44, 765); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/27/2020', '5/11/2023', '4/19/2020', 121, 534); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/18/2024', '6/22/2022', '12/31/2023', 678, 126); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/26/2021', '12/3/2022', null, 561, 657); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/11/2020', '1/22/2024', null, 992, 806); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/19/2022', '8/14/2020', null, 309, 917); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/27/2023', '1/10/2024', '8/26/2023', 682, 980); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/2/2023', '4/22/2023', '8/30/2023', 162, 249); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/25/2023', '5/2/2021', null, 20, 661); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/22/2023', '5/11/2020', '6/25/2020', 682, 984); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/14/2023', '4/16/2022', null, 597, 197); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/11/2021', '8/5/2022', '12/27/2022', 932, 248); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/23/2022', '2/24/2023', null, 824, 706); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/27/2022', '6/15/2022', '11/23/2022', 268, 270); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/25/2024', '5/27/2021', '12/24/2022', 26, 476); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/29/2021', '4/11/2023', null, 819, 175); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/28/2022', '5/22/2022', null, 427, 4); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/9/2023', '9/3/2021', '9/4/2020', 474, 827); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/1/2023', '1/6/2024', null, 398, 718); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/6/2024', '1/19/2021', null, 508, 866); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/5/2023', '4/23/2020', '4/5/2021', 164, 65); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2022', '2/8/2023', null, 379, 919); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/9/2023', '9/30/2023', null, 371, 521); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/5/2024', '4/20/2021', '8/31/2022', 475, 501); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/28/2023', '4/6/2023', '6/28/2022', 814, 718); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/8/2020', '3/20/2024', '6/10/2021', 331, 638); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/10/2022', '9/18/2022', '11/24/2023', 707, 481); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/16/2022', '11/22/2020', '10/20/2021', 64, 946); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/24/2023', '4/23/2021', '8/19/2020', 263, 442); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2024', '2/25/2022', '10/24/2021', 14, 147); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/10/2023', '12/14/2020', '9/16/2021', 591, 574); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/21/2023', '1/5/2024', '2/14/2021', 819, 963); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2020', '3/31/2022', null, 330, 83); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/17/2022', '12/29/2023', '4/6/2023', 659, 968); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2023', '5/16/2023', '10/9/2020', 285, 795); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/11/2020', '7/21/2023', '3/12/2023', 70, 312); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/21/2023', '10/30/2022', '6/9/2021', 693, 91); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/24/2024', '1/12/2021', '3/18/2022', 286, 126); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/18/2020', '10/4/2020', '2/13/2021', 520, 886); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2022', '4/27/2022', null, 454, 776); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/14/2023', '3/10/2024', '9/12/2020', 966, 150); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/20/2022', '8/11/2021', null, 688, 220); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/13/2023', '6/28/2021', '6/2/2023', 314, 949); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/29/2021', '8/4/2022', null, 620, 304); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/19/2023', '8/25/2022', '10/23/2021', 890, 383); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/20/2024', '7/20/2021', null, 688, 118); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/15/2023', '10/15/2023', '5/25/2022', 393, 456); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/11/2020', '11/9/2021', null, 849, 933); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/17/2023', '1/9/2021', '2/21/2024', 1000, 499); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/18/2023', '2/14/2022', null, 26, 717); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/19/2024', '8/11/2021', '10/31/2021', 244, 935); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/15/2022', '4/8/2021', '1/11/2021', 261, 820); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/3/2023', '1/29/2022', null, 542, 273); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/21/2020', '5/8/2023', null, 686, 376); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/1/2022', '6/8/2022', null, 195, 29); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/10/2020', '8/24/2021', null, 719, 510); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/9/2021', '12/24/2021', null, 383, 674); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/26/2020', '12/15/2021', '4/28/2020', 229, 831); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/24/2020', '1/5/2024', null, 676, 33); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/31/2023', '7/17/2021', null, 68, 542); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/25/2021', '10/26/2023', '1/18/2024', 24, 804); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/20/2021', '1/27/2023', null, 690, 822); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/27/2023', '10/30/2023', null, 543, 564); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/16/2020', '4/28/2021', '4/17/2020', 62, 695); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/27/2022', '7/22/2020', '4/12/2023', 440, 734); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/29/2020', '3/29/2024', '9/23/2020', 720, 105); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/15/2020', '3/29/2023', '5/23/2021', 621, 119); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/4/2023', '6/4/2023', '11/25/2023', 211, 709); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/15/2022', '4/15/2021', null, 97, 978); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/10/2021', '5/6/2023', null, 53, 57); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/16/2023', '1/16/2022', null, 301, 165); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/10/2021', '4/15/2020', null, 458, 120); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/26/2022', '12/3/2020', '8/7/2020', 541, 247); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/25/2022', '8/10/2021', null, 3, 229); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2024', '8/27/2022', '6/18/2023', 305, 695); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/9/2022', '7/11/2023', null, 410, 196); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/29/2023', '6/26/2022', '2/4/2021', 591, 188); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/1/2022', '10/5/2023', null, 461, 297); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2021', '2/22/2021', '2/22/2021', 259, 870); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/10/2021', '3/2/2021', '6/23/2023', 536, 524); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2021', '10/14/2021', '2/9/2022', 376, 963); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/25/2021', '1/18/2023', '11/16/2020', 506, 636); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/15/2020', '11/13/2021', '5/8/2020', 17, 854); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/16/2022', '3/14/2024', null, 511, 103); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/3/2020', '1/5/2022', null, 830, 969); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/11/2022', '4/27/2021', null, 555, 181); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/10/2022', '8/28/2022', '12/3/2023', 997, 513); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/13/2021', '9/4/2021', null, 205, 801); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/3/2021', '12/17/2021', '2/9/2022', 211, 478); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/28/2021', '4/14/2021', '5/6/2021', 821, 917); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/2/2021', '7/24/2020', null, 383, 689); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/29/2020', '12/3/2023', null, 446, 721); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/28/2023', '5/22/2023', null, 463, 610); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2023', '10/23/2021', '9/9/2023', 917, 504); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2023', '9/8/2020', '12/27/2022', 763, 836); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/11/2023', '5/10/2021', '9/27/2023', 300, 442); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/21/2023', '3/3/2021', '3/11/2021', 669, 44); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/28/2020', '3/2/2024', null, 4, 215); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/21/2020', '11/11/2022', null, 933, 337); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/30/2021', '5/10/2020', null, 263, 176); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2021', '12/22/2020', '1/26/2023', 991, 357); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/22/2023', '2/4/2022', null, 394, 11); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/24/2020', '7/5/2022', '12/5/2020', 88, 581); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/1/2020', '12/12/2021', '9/16/2023', 735, 234); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/24/2022', '11/4/2020', '2/12/2022', 654, 951); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/3/2020', '5/21/2022', null, 557, 930); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/5/2024', '5/18/2020', null, 676, 304); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/27/2022', '10/4/2023', '3/12/2024', 151, 556); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/9/2021', '1/8/2022', '12/31/2020', 65, 704); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2020', '7/6/2020', '11/20/2022', 728, 182); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/17/2023', '4/15/2023', null, 420, 394); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/18/2021', '9/20/2022', '6/25/2021', 186, 453); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/19/2023', '5/22/2023', '9/23/2022', 8, 382); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/4/2020', '3/23/2024', null, 50, 24); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/16/2022', '4/30/2022', '9/1/2022', 191, 893); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/5/2021', '9/29/2021', '4/28/2020', 670, 574); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/28/2024', '9/21/2020', null, 797, 807); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/3/2024', '4/27/2023', '8/31/2022', 161, 318); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/14/2021', '6/20/2022', '1/23/2023', 456, 625); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/6/2022', '1/8/2024', '9/3/2021', 223, 789); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/2/2021', '12/22/2023', null, 429, 120); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/7/2021', '7/17/2021', '8/26/2023', 439, 73); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/17/2022', '8/3/2021', null, 70, 45); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/14/2023', '1/5/2022', '3/14/2024', 392, 23); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/6/2021', '11/12/2021', null, 1, 932); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/13/2023', '4/21/2020', '1/25/2023', 152, 634); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/30/2022', '8/19/2021', null, 913, 869); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/23/2021', '6/30/2021', '2/23/2022', 789, 554); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/27/2020', '4/12/2023', '1/28/2023', 848, 131); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/23/2023', '4/7/2024', '1/25/2024', 875, 976); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/1/2023', '8/8/2020', '8/2/2020', 963, 490); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2022', '10/2/2022', '11/13/2021', 310, 79); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/19/2020', '11/3/2021', '6/1/2023', 874, 370); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/10/2021', '7/2/2020', '5/20/2020', 838, 979); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2022', '3/27/2024', '8/25/2022', 599, 175); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/23/2020', '1/3/2023', '3/23/2022', 756, 881); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/12/2024', '1/19/2022', '7/11/2023', 400, 217); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/8/2021', '9/25/2023', '7/26/2022', 386, 780); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/27/2022', '5/25/2021', '4/8/2023', 834, 97); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/28/2020', '4/10/2022', null, 381, 52); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/2/2023', '11/30/2020', null, 760, 596); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/7/2020', '10/16/2021', null, 107, 330); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/14/2020', '7/29/2020', null, 877, 893); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/12/2022', '12/16/2020', '2/25/2023', 661, 297); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/12/2020', '10/14/2021', null, 649, 558); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/23/2023', '5/5/2020', null, 166, 45); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2021', '8/2/2020', '9/28/2020', 52, 110); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/16/2023', '9/19/2022', '10/4/2022', 233, 702); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/23/2021', '8/1/2021', '4/10/2023', 424, 288); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2020', '11/4/2021', '1/13/2021', 401, 413); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/21/2023', '1/29/2021', null, 263, 722); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/27/2024', '11/16/2021', null, 752, 776); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/18/2020', '10/2/2021', null, 507, 193); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/29/2020', '1/26/2024', null, 896, 593); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/16/2023', '9/14/2022', null, 872, 255); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2021', '12/13/2020', '5/19/2022', 24, 295); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/16/2020', '2/8/2021', null, 401, 143); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/20/2023', '1/13/2024', '8/21/2021', 505, 817); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/22/2022', '12/2/2020', '9/22/2022', 395, 814); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/2/2023', '8/20/2022', '7/19/2023', 175, 729); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/10/2023', '1/9/2024', null, 812, 41); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/13/2022', '5/28/2020', null, 13, 489); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/26/2022', '10/5/2023', '2/7/2021', 38, 536); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/22/2020', '1/24/2022', null, 253, 311); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/25/2024', '6/9/2020', null, 134, 512); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/29/2021', '5/19/2020', null, 325, 706); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/27/2021', '12/1/2021', '2/15/2023', 765, 996); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2021', '3/12/2022', '11/3/2022', 231, 410); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/23/2022', '8/16/2022', '3/23/2021', 695, 601); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/3/2022', '6/10/2023', '2/2/2024', 378, 235); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/2/2020', '1/4/2021', null, 646, 537); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/31/2022', '8/22/2020', '8/21/2021', 115, 265); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/28/2020', '3/15/2021', '2/17/2022', 579, 609); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/24/2023', '2/12/2023', null, 847, 902); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/21/2022', '6/10/2021', '3/28/2024', 987, 832); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/13/2024', '5/12/2020', '6/14/2021', 426, 333); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/11/2023', '8/28/2020', '2/8/2023', 782, 51); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/15/2021', '7/9/2023', '7/17/2022', 888, 104); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/6/2021', '3/3/2022', null, 971, 974); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/25/2023', '12/16/2021', '6/25/2023', 713, 793); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/1/2023', '9/24/2020', null, 326, 596); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/23/2023', '4/2/2023', null, 518, 632); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/31/2022', '12/20/2023', null, 985, 440); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/29/2020', '4/7/2023', null, 29, 950); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2022', '8/19/2021', null, 388, 373); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2021', '8/5/2022', '4/9/2022', 784, 591); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/1/2021', '12/7/2021', '5/17/2022', 604, 809); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/8/2022', '10/8/2021', '7/30/2022', 778, 827); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/24/2020', '6/28/2020', '8/26/2021', 544, 136); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/1/2022', '11/26/2022', null, 465, 105); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/4/2022', '3/23/2024', '12/12/2023', 194, 342); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/13/2023', '1/2/2021', null, 98, 275); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/25/2022', '3/18/2023', '2/2/2023', 370, 155); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/22/2022', '5/13/2022', '8/3/2020', 670, 578); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/29/2023', '1/18/2024', null, 399, 426); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/28/2023', '9/29/2022', '6/23/2022', 170, 881); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/20/2023', '7/28/2021', '1/29/2022', 901, 15); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/5/2021', '10/29/2021', '8/6/2023', 999, 708); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/31/2023', '12/5/2020', '2/10/2022', 375, 484); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/16/2022', '3/29/2022', '4/26/2020', 440, 323); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/9/2023', '7/20/2022', null, 16, 299); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/20/2023', '6/13/2022', '9/12/2023', 818, 115); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/16/2021', '4/26/2021', '2/4/2024', 390, 733); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/11/2022', '4/17/2022', null, 799, 122); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/14/2024', '3/16/2023', null, 708, 765); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/18/2021', '4/15/2022', '7/31/2021', 494, 11); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/5/2021', '12/25/2020', null, 239, 242); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/8/2020', '1/4/2024', null, 400, 297); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/25/2022', '7/4/2022', '6/1/2022', 482, 644); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/15/2023', '9/4/2022', null, 750, 276); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/7/2021', '4/21/2022', '8/27/2023', 807, 802); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/12/2023', '12/15/2022', '12/29/2022', 382, 467); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/24/2020', '2/20/2021', null, 951, 534); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/27/2023', '4/8/2023', null, 737, 606); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/30/2020', '7/14/2022', null, 307, 510); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/8/2020', '12/6/2020', '12/24/2023', 829, 873); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/6/2020', '9/11/2021', '9/2/2020', 943, 959); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/13/2023', '3/30/2023', '7/16/2021', 326, 712); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/29/2021', '11/19/2021', '1/15/2024', 83, 637); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/13/2021', '2/9/2022', '5/21/2023', 240, 290); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2021', '7/24/2022', '12/10/2022', 74, 816); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/6/2021', '6/26/2020', null, 178, 729); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/20/2022', '4/5/2023', '7/23/2023', 329, 26); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/10/2020', '8/13/2022', null, 23, 534); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/20/2021', '7/8/2020', null, 913, 831); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/28/2021', '10/2/2022', null, 877, 628); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/28/2021', '12/21/2021', null, 901, 575); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/6/2023', '5/6/2021', '10/21/2022', 583, 729); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/18/2022', '8/25/2021', '8/19/2023', 74, 888); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/13/2023', '10/10/2023', null, 557, 256); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/11/2024', '5/17/2023', '12/17/2022', 325, 712); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/4/2022', '7/15/2022', null, 124, 629); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/6/2022', '12/29/2020', '8/21/2020', 603, 262); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/8/2022', '6/7/2020', '10/15/2021', 233, 858); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/31/2024', '2/3/2021', '10/16/2020', 109, 408); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2023', '3/17/2023', '12/6/2021', 737, 968); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/20/2022', '3/26/2021', '10/21/2020', 930, 671); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/12/2020', '7/25/2021', '10/11/2020', 613, 263); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/10/2020', '6/21/2021', '5/6/2021', 944, 257); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/24/2022', '5/11/2020', null, 419, 741); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/11/2023', '11/12/2020', null, 952, 628); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2023', '10/30/2020', '11/22/2021', 762, 604); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/27/2020', '7/15/2022', null, 51, 352); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/31/2022', '11/10/2020', '10/24/2023', 531, 622); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/9/2024', '2/7/2022', '8/10/2023', 522, 690); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/16/2020', '9/13/2020', null, 103, 122); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/22/2022', '2/25/2022', '9/1/2020', 270, 702); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/13/2021', '12/29/2020', null, 453, 444); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/1/2023', '11/28/2021', '7/17/2023', 218, 879); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/26/2021', '7/20/2020', null, 797, 643); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/30/2024', '12/13/2023', '11/11/2021', 980, 492); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/2/2022', '8/6/2023', null, 97, 632); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/5/2023', '6/16/2020', null, 71, 859); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/26/2022', '4/30/2023', '5/29/2023', 440, 399); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/10/2023', '6/28/2023', null, 234, 508); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/27/2023', '10/13/2023', '8/24/2023', 920, 898); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/28/2020', '6/2/2020', null, 138, 767); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/23/2022', '11/2/2020', '3/5/2023', 734, 306); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/21/2020', '1/22/2024', null, 866, 504); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/20/2022', '9/24/2022', '7/1/2023', 418, 451); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/16/2023', '4/27/2022', null, 579, 414); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/13/2021', '8/11/2023', null, 807, 760); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/5/2023', '7/10/2020', null, 271, 771); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/28/2022', '1/28/2022', null, 791, 157); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/19/2021', '12/18/2022', '5/8/2021', 204, 907); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/6/2023', '5/20/2023', '3/10/2023', 887, 933); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/2/2022', '9/22/2022', null, 390, 370); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/3/2022', '4/11/2024', null, 895, 935); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/26/2021', '7/11/2021', '7/11/2020', 600, 998); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/15/2023', '12/18/2023', '4/23/2020', 718, 426); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/6/2020', '5/1/2021', '5/31/2021', 218, 958); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/31/2022', '6/1/2022', null, 185, 723); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/24/2020', '3/18/2022', '4/19/2021', 412, 461); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/16/2022', '8/25/2022', '5/25/2021', 418, 447); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2024', '9/13/2023', null, 244, 307); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/8/2023', '8/26/2022', null, 824, 12); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/9/2021', '6/27/2020', null, 231, 260); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/7/2023', '6/22/2021', '3/18/2024', 43, 44); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/29/2021', '8/15/2021', '7/2/2020', 974, 129); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/17/2021', '3/12/2023', '9/14/2020', 763, 63); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/19/2023', '2/13/2021', null, 610, 315); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/13/2022', '3/25/2024', null, 781, 815); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/7/2022', '11/13/2022', '11/25/2022', 293, 150); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/20/2024', '3/22/2024', '12/7/2020', 42, 787); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/27/2022', '2/9/2022', '2/21/2021', 379, 939); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/10/2022', '7/25/2022', '10/3/2021', 61, 522); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/26/2022', '3/24/2022', '12/9/2023', 214, 810); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/17/2023', '1/8/2023', null, 954, 213); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/18/2022', '11/30/2021', null, 288, 287); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/9/2023', '7/17/2021', '5/1/2022', 712, 828); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/9/2021', '9/22/2023', '12/9/2020', 646, 919); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/25/2020', '12/31/2021', '11/1/2021', 814, 869); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/25/2021', '8/27/2022', '7/30/2022', 370, 712); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/17/2021', '8/5/2020', '6/12/2023', 308, 219); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/13/2023', '9/22/2023', null, 403, 837); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/4/2020', '9/27/2021', '4/29/2023', 941, 867); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/31/2022', '10/31/2023', '6/9/2023', 225, 494); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/9/2020', '7/26/2021', null, 616, 957); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/29/2020', '7/23/2021', null, 321, 557); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/30/2022', '1/1/2024', '7/7/2021', 706, 455); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/29/2021', '6/15/2023', '10/20/2020', 97, 105); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/29/2023', '10/19/2021', null, 610, 86); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/14/2020', '1/29/2023', '2/9/2022', 929, 81); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/7/2022', '2/12/2022', '6/9/2023', 231, 720); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/9/2021', '10/4/2020', null, 943, 205); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/9/2021', '1/23/2022', '10/14/2022', 543, 705); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/7/2023', '12/17/2020', null, 297, 229); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/4/2024', '8/23/2020', '1/31/2023', 962, 229); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/12/2022', '1/23/2023', '7/31/2023', 596, 308); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/28/2021', '4/29/2023', null, 463, 388); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/24/2023', '1/31/2024', null, 440, 991); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/28/2023', '10/23/2021', '7/21/2021', 218, 390); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/17/2020', '11/1/2021', '11/14/2020', 993, 227); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/18/2020', '8/15/2020', null, 163, 931); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/10/2024', '10/17/2022', '9/18/2022', 310, 298); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/20/2022', '6/5/2021', '1/3/2024', 624, 530); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/16/2021', '7/8/2020', '5/11/2021', 207, 895); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/27/2022', '12/30/2020', null, 939, 766); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/13/2023', '7/18/2020', '7/25/2022', 534, 560); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/16/2024', '10/30/2023', '4/3/2021', 555, 96); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/6/2023', '12/5/2020', '8/24/2022', 640, 757); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/12/2021', '3/2/2023', '2/2/2024', 220, 529); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/27/2022', '4/13/2022', '11/3/2022', 596, 615); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/22/2020', '10/16/2020', '10/19/2021', 602, 849); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/11/2021', '2/19/2022', '8/23/2021', 842, 584); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/14/2024', '1/16/2023', null, 363, 158); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/28/2022', '4/2/2022', '3/6/2024', 44, 122); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/7/2020', '9/14/2023', '11/6/2021', 490, 514); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/24/2022', '4/30/2020', null, 771, 879); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/15/2022', '6/3/2021', '3/3/2021', 500, 745); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/26/2020', '1/7/2021', null, 846, 480); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/23/2020', '10/1/2020', '3/28/2023', 69, 687); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/13/2020', '1/27/2023', '12/22/2021', 597, 395); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/28/2022', '9/6/2022', '10/27/2020', 209, 102); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/27/2021', '2/21/2021', null, 127, 433); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/21/2020', '12/20/2021', '5/15/2022', 529, 65); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/23/2020', '2/2/2024', null, 327, 777); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/17/2021', '7/21/2021', '8/4/2021', 888, 391); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/31/2021', '6/3/2022', null, 175, 811); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/1/2022', '8/11/2020', '10/31/2023', 440, 363); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/19/2020', '6/4/2022', '1/14/2021', 806, 203); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/17/2020', '4/26/2020', '5/26/2020', 394, 226); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/26/2022', '9/24/2023', '7/3/2020', 684, 807); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/9/2020', '12/17/2022', '6/22/2022', 529, 562); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/5/2020', '9/15/2023', null, 293, 888); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/14/2023', '8/27/2021', '8/2/2021', 882, 168); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/9/2021', '12/22/2022', null, 783, 609); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/1/2022', '9/23/2020', null, 923, 129); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/28/2022', '8/28/2021', '4/2/2024', 901, 656); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/21/2023', '3/6/2021', '8/25/2023', 984, 575); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/8/2023', '6/27/2020', '10/21/2022', 109, 363); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/30/2021', '10/23/2023', '4/16/2022', 681, 927); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/25/2020', '5/25/2020', null, 620, 234); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/10/2022', '6/21/2020', '5/25/2022', 986, 87); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/25/2022', '2/2/2023', null, 933, 939); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/21/2023', '9/23/2023', null, 556, 289); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/2/2021', '1/9/2021', '8/6/2022', 402, 133); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('8/11/2022', '10/15/2022', null, 931, 31); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/3/2022', '3/12/2024', '9/21/2021', 483, 470); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/10/2022', '11/11/2023', '4/12/2021', 833, 816); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/20/2024', '1/3/2024', '6/14/2023', 203, 416); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/17/2023', '3/31/2022', '6/11/2020', 948, 121); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/19/2020', '10/10/2022', null, 616, 143); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/24/2022', '10/16/2023', '1/29/2022', 968, 250); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/20/2020', '4/14/2021', null, 165, 503); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/18/2023', '5/29/2021', null, 638, 887); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/12/2021', '10/10/2021', '9/6/2022', 543, 712); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/7/2024', '11/20/2021', null, 694, 495); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/27/2022', '4/16/2023', null, 889, 88); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('9/10/2023', '3/7/2023', '2/4/2024', 866, 116); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('2/15/2022', '8/16/2023', '1/13/2021', 634, 55); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/18/2021', '12/21/2023', '10/19/2020', 917, 152); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('5/22/2021', '6/17/2023', '9/3/2020', 994, 481); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/10/2022', '12/27/2020', null, 819, 534); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/20/2023', '9/4/2021', null, 273, 132); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('4/2/2021', '11/20/2022', '11/28/2020', 885, 927); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/2/2022', '6/2/2023', '7/17/2022', 711, 753); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/9/2023', '12/18/2021', null, 843, 409); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/28/2022', '5/9/2022', '3/22/2022', 379, 205); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('10/8/2021', '7/2/2022', null, 94, 401); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/13/2024', '8/17/2023', '9/20/2020', 674, 652); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/7/2024', '10/28/2020', '8/26/2022', 142, 478); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('1/29/2023', '12/8/2021', '1/19/2023', 158, 477); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('6/1/2021', '1/9/2023', '1/2/2023', 695, 269); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('12/16/2020', '4/12/2024', '2/21/2023', 741, 350); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('7/18/2021', '10/2/2022', null, 983, 792); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('3/30/2023', '9/23/2020', null, 585, 983); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/10/2020', '10/2/2022', '11/5/2020', 944, 6); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/2/2023', '9/16/2021', '3/24/2024', 918, 621); +insert into Loans (dateBorrowed, dueDate, dateReturned, bookId, borrowerId) values ('11/20/2023', '9/24/2023', '12/13/2023', 728, 283);