It is in the db.sql file located in the file EQEMu-0.5.5-Configuration.zip... unzip, then copy that file (db.sql) to your c:/mysql/bin folder then source it in as if you would source any DB.. Below is how to do this:
start>run> type cmd>> hit enter
*NOTE hit the enter key after each line you type in your dos command window
Code:
cd c:/mysql/bin
mysql -u root mysql
USE eq; (assuming eq is what you named your db, if you followed the guides then you did)
source db.sql;
quit