Ok i have just started learning SQL, and i am stumped, I have created my database, now i want to add tables, for this i have created a .sql with the relevent sql commands and table structure
Create table news
( newsid int unsigned not null auto_increment primary key,
newsitem text,
poster char(50),
poster_e-mailchar(50),
poster_image char(50),
poster_date date
);
I have powered up mysql to its command prompt, how can i get the table into the database, were does this .sql have to be in order to use say
mysql> source mydb.sql
I am using IIS/ Windows2000
Please help
-ali