CREATE TABLE Documents
(
doc_id INTEGER,
doc_date REAL,
doc_name TEXT,
doc_cost REAL,
is_concluded INTEGER
);
| To create a table using CREATE TABLE, you must specify the following information: ✓ The name of the new table specified after the keywords CREATE TABLE; ✓ The name and definition of the table columns separated by commas. |