Creating Tables / Basic Table Creation

CREATE TABLE Documents
(
    doc_id INTEGER,
    doc_date DATETIME,
    doc_name TEXT,
    doc_cost CURRENCY,
    is_concluded LOGICAL
);


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.