Mysql manual table creation method: first click Start, find the MySql command line; then enter the registration password of my sql; finally enter the database under which the table needs to be built.
Mysql manual table creation method:
1. Click Start and find the MySql command line.
#2. Enter the registration password of my sql.
#3. Enter what table you want to build under which database. For example: If I want to build a test table under the use library. I just write use database use; press Enter, create table test. After this, the table is created
##More related free learning recommendations:mysql tutorial(Video)
The above is the detailed content of How to create a table manually in mysql. For more information, please follow other related articles on the PHP Chinese website!