1.Who checked out the book 'The Hobbit’?
select name
from member
where id in (select member_id
from book
inner join checkout_item on checkout_item.book_id = book.id
where book.title = "The Hobbit");Anand Beck