Create a database table inMySQL

How to create a table in MySQL

To make a new table, you must use the CREATE TABLE query command and give the new table a name.

Also, you start to describe the columns of that table in the brackets. The structure is made up of commas that separate the name, the type, and possibly some other properties.

See all the MySQL data types