import mysql database in command line code example
Example 1: linux command line import mysql database
# if your database is not locally hosted
mysql -u username -p -h dbhost dbname < filename.sql
Example 2: how to import database in mysql by cmd
mysql -u username -p database_name < file.sql
Example 3: import mysql database command line
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