import sql file to mysql on terminal 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 file mysql terminal
mysql -u<username> -p<password> databaseName < /path/fileName.sql