Navicat for MySQL Usage Guide: Creating Database Tables Do you want to use Navicat for MySQL to manage MySQL databases and create tables? This article will introduce step by step how to use Navicat for MySQL and explain in detail how to create a database table in it. By reading this article, you will master the skills required to create and manage database tables in Navicat for MySQL.
First, open Navicat for MySQL and create a database, for example called userdemo.
Create a table on the newly created database, as shown below. The first column of the table is called userid. The primary key is set not to be empty and is automatically increased.
Add a new column to the table by adding a field.
After the table data is designed, you can click Save.
Expand userdemo and you will see the table you just created. Double-click to open the table and add data to the table.
After adding data, if you want to add or delete a piece of data, click the icon as shown.
In a piece of data, you can only enter the username and password values, but when you Ctrl+s to save it will automatically add the userid value, because we set the primary key automatically before increase.
After you add a piece of data to save, as shown in the figure, you will see the statement it inserted.
The above is the detailed content of How to use Navicat for MySQL How to create tables with Navicat for MySQL. For more information, please follow other related articles on the PHP Chinese website!