Write a query that returns the full names (first name, a space, then last name) of everyone who has checked out a book. No duplicates!
CREATE TABLE BOOKS (Book_ID INT, Book_Name TEXT, Author TEXT);
CREATE TABLE CHECKED_OUT (First_Name TEXT, Last_Name TEXT, Book_ID INT);