|
mysql -u username -p
enter your password
create database databnase_name;
use database_name;
create table table_name ( ...... blah blah ..... );
Although unless you are programming the majority of the scripts just make the tables and what not for you as long as you have a username /pw and database.
|