CREATE [OR REPLACE] TABLE

Creates a new table or replaces the table in the database.

Syntax

CREATE [OR REPLACE} TABLE table_name (
    column1 datatype,
    column2 datatype,
    column3 datatype,
   ....
);