To create a table in the MySQL Workbench GUI:
- Under the appropriate database in the left navigation pane, right-click Tables and select Create Table...
- Enter the table name, add all column names, their data type, constraints, default values, and any other details as required, then click Apply
- Review the SQL statement that will be run against the database and click Apply
The table will now be created, and a message will display advising that the script was successful.
Below are screenshots of the above steps.
The Left Navigation Pane
Under the appropriate database in the left navigation pane, right-click Tables and select Create Table...:
![Screenshot of selecting Create Table from the left navigation pane](https://database.guide/wp-content/uploads/2016/05/mysql_create_a_table_1.png)
Configure the Table
Enter the table name, add all column names, their data type, constraints, default values, and any other details as required, then click Apply:
![Screenshot of the new table being configuring.](https://database.guide/wp-content/uploads/2016/05/mysql_create_a_table_2.png)
Create the Table
Review the SQL statement that will be run against the database and click Apply:
![Screenshot of reviewing the SQL script before applying it to the database.](https://database.guide/wp-content/uploads/2016/05/mysql_create_a_table_3.png)
The table will now be created, and a message will display advising that the script was successful.
You can now navigate to the table in the left navigation pane. Expanding the table will reveal the columns that you specified.
![Screenshot of expanding the table.](https://database.guide/wp-content/uploads/2016/05/mysql_create_a_table_5.png)