create table article ( id int(10) not null auto_increment, title varchar(200), author varchar(50), content text, key id (id), key author (author), );