Creating Tables / Basic Table Creation

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