CREATE TABLE

Creates a new table in the database.

Syntax

CREATE TABLE table_name (
    column1 datatype,
    column2 datatype,
    column3 datatype,...
);