Prześlij linię poleceń mysql mysql
mysql -u username -p database_name < file.sql
Note-1: It is better to use the full path of the SQL file file.sql.
Singh99
mysql -u username -p database_name < file.sql
Note-1: It is better to use the full path of the SQL file file.sql.
mysql> use db_name;
mysql> source file_name.sql;
Source : https://www.programmingquest.com/2018/08/how-to-export-mysql-database-using.html
open cmd
set mysql path in cmd
set path=c:\wamp\bin\mysql\mysql5.6.17\bin
For database import (Restore):
mysql -u YourUser -p YourDatabaseName < filename.sql