MYSQL CREATE TABLE
The MySQL CREATE TABLE command is used to create a new table into the database. A table creation command requires three things:
MySQL Create Table Syntax
CREATE TABLE table_name (column_name column_type...);
MySQL Optional Attributes:
MySQL Create Table Example
CREATE TABLE student( id INT NOT NULL AUTO_INCREMENT, name VARCHAR(100) NOT NULL, class VARCHAR(100) NOT NULL, PRIMARY KEY (id ) );