create table person(
 id(11) not null auto_increment,
name varchar(20) not null default,
sex char(1) default null,
address varchar(200) default null,
primary key (id),
)type =myisam;