Mysql has a reasonably readable help file that will tell you all kinds of things you cn do with it. That being said, create and load the data for a database this way:
Code:
Copy db.sql to your mysql/bin directory
Open a dos window
cd to your mysql/bin directory
mysql.exe
create database eq;
source db.sql
exit
Use another name besides eq for the database if you want.