Write a query that returns the number of unique authors who have written books in this table.
CREATE TABLE BOOKS (Book_ID INT, Book_Name TEXT, Author TEXT); CREATE TABLE CHECKED_OUT (First_Name TEXT, Last_Name TEXT, Book_ID INT);