Mysql Steps to import sql files: 1. Find mysql in the [Start] interface, double-click to open the mysql software, and enter the password; 2. Create a database; 3. Enter "use database name" to start using this Database; 4. Enter the "source sql file path" command to import the sql file.
SQL file is a very important file for the database. Converting the sql file into a data file is a very important skill for using the database. The following article will introduce to you how to use mysql to import sql files. I hope it will be helpful to you.
1. Find mysql in the start interface, double-click to open the mysql software, and enter the password.
2. Create a database
You can create a database and then import the sql file into the database; you can also import sql file is imported into an existing database. The create databases statement is used here to create a database.
3. Enter "show databases;" to see the database you created.
#4. Enter "use database name" to start using this database.
5. Start importing the sql file and enter the "source sql file path" (note that if your file path is copied, replace all "\" with " /”)
#6. Enter “show tables” and you will see the tables you imported.
The above is the detailed content of How to import sql file in mysql. For more information, please follow other related articles on the PHP Chinese website!