this is making me mad, what is wrong with this, it says there is an error in the first line after i create the table, but it seems ok to me:
mysql> CREATE TABLE news(
-> id MEDIUMINT(10) DEFAULT'0' NOT NULL auto_increment,
-> title VARCHAR(80),
-> description TEXT,
-> author VARCHAR(40),
-> submitted DATE,
-> url VARCHAR(80),
-> PRIMART KEY (id));