CREATE TABLE Documents
(
doc_id INTEGER,
doc_date DATE,
doc_name VARCHAR(100),
doc_cost DECIMAL(10, 2),
is_concluded BOOLEAN
);
| 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. |