import db using mysql 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: import DB through mysql console
mysql> use db_name;
mysql> source folder_path/file_name.sql;