MySQL Create Table

Creating tables.

MySQL CREATE TABLE Statement

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

The column parameters specify the names of the columns of the table.

The datatype parameter specifies the type of data the column can hold (e.g. varchar, integer, date, etc.).

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

Example

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