Import them. Fastest through command line honestly.
Windows:
1) Copy the .sql file to the directory where MySQL is installed (easiest)(e.g. E:\xampp\mysql\bin).
2) While in the directory, hold the shift key, then right click while still holding the shift key. From the menu choose "Open command promt here" (or equivalent).
3) Issue the command:
4) When prompted for password, enter your MySQL root password and press enter. The promt should change to "mysql>".
5) Create a database (note: semicolon important)
Код:
CREATE DATABASE yourdbname;
6) Exit mysql prompt:
7) Now import the SQL file:
Код:
mysql -u root -p yourdbname < thefilename.sql
8) Enter your MySQL root password once more.
9) Import can take a few seconds. And then you're done.
Same procedure for Linux, but you can skip step 1 and 2.