how to import database in mysql using command line in ubuntu code example
Example 1: mysql import sql file
mysql -u username -p database_name < file.sql
Example 2: linux command line import mysql database
# if your database is not locally hosted
mysql -u username -p -h dbhost dbname < filename.sql