BIBLIO — Output the CREATE statement

Write a query that outputs the SQL statement used to create the CHECKED_OUT table.

Table schema
CREATE TABLE CHECKED_OUT (First_Name TEXT, Last_Name TEXT, Book_ID INT);
Hint (click to show)
The schema is stored in sqlite_master.