Mysql command line import. SQL data to the database
1. First open the mysql tutorial in the command line Console
Perhaps the command is as follows:
Mysql-u root-p database_name
Then you may be prompted to enter the corresponding Password
2. The following command may be useful to you. When you want to replace a database tutorial
Mysql> use database_name
Run the following command:
Mysql> source d: datafilename. SQL
Of course, you need to clarify the path of the file and use it correctly.
Enter bin in the directory where mysql is installed. Enter the command to import SQL.
For example, your mysql is installed in d: mysql
The procedure is as follows:
Start> RUN> Enter CMD
D:
Cd mysqlbin
Mysql-u root-p123456 test <d: a. SQL
Here, root is your mysql administrator username, and 123456 is the password test is the database name d: a. SQL is the location of the backup data file.
For Windows, go to the Bin folder in the MYSQL file directory from the command prompt and execute the command
Mysql-u root-p databasename <db. SQL
Here, root is your MYSQL user name, databasename is your database name, and db. SQL: You are a file. note that you must set db. the SQL statement can be placed in the bin folder. of course, the file location can be changed.
For LINUX, enter
Mysql databasename <db. SQL