There are two simple ways in MySQL to load data into MySQL database from a previously backed up file.
Importing Data with LOAD DATA:
MySQL provides a LOAD DATA statement that acts as a bulk data loader.
Here's an example statement that reads a file dump.txt from your
current directory and loads it into the table mytbl in the current
database:
mysql>...