how to import database using command line code example

Example 1: import database through command line

mysql -u username -p database_name < file.sql

Example 2: 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

Example 3: how to import mysql database command line

mysql>create database yourDatabaseName;
mysql>use yourDatabaseName;

Example 4: import mysql database command line linux

mysql -u<user_name> -puser_password> <database_name>
source /path/db.sql

Tags:

Sql Example