BIBLIO — Readers of To Kill a Mockingbird

Write a query that returns the first and last names of all people who checked out "To Kill a Mockingbird" by Harper Lee.

Table schema
CREATE TABLE BOOKS (Book_ID INT, Book_Name TEXT, Author TEXT);
CREATE TABLE CHECKED_OUT (First_Name TEXT, Last_Name TEXT, Book_ID INT);
Hint (click to show)
Join then filter on the book.