The CREATE TABLE statement is used to create a new table in a database.

EXAMPLE

CREATE TABLE Persons (  
    PersonID int,  
    LastName varchar(255),  
    FirstName varchar(255),  
    Address varchar(255),  
    City varchar(255)  
);

DROP TABLE

DROP TABLE _table_name_;

TRUCATE TABLE

The `TRUNCATE TABLE` statement is used to delete the data inside a table, but not the table itself.

TRUNCATE TABLE table_name;

DataBase and https://www.w3schools.com/sql/sql_quickref.asp