BIBLIO — Unique authors

Write a query that returns the number of unique authors who have written books in this table.

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)
COUNT(DISTINCT ...).