Table

CREATE TABLE table_name (
    column1 datatype constraint,
    column2 datatype constraint,
    ...
);
CREATE TABLE employees (
    id INT PRIMARY KEY,
    first_name VARCHAR(50),
    last_name VARCHAR(50),
    birth_date DATE,
    hire_date DATE,
    salary DECIMAL(10, 2)
);

To create a new table, you use the CREATE TABLE statement followed by the table name and a definition of its columns and their data types.

Table — Structure map

Clickable & Draggable!

Table — Related pages: