CREATE TABLE article ( ID int auto_increment, title varchar(250) NOT NULL, type int not null, content text, date timestamp not null, primary key(id) );