how to import .sql file in mysql cli 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 database through command line
mysql -u username -p database_name < file.sql