首页 > 代码库 > 任务9user表建表语句

任务9user表建表语句

create table user(
    id int not null auto_increment primary key,
    username varchar(30) not null default ‘‘,
    pwd char(32) not null default ‘‘,
    email varchar(40) not null default ‘‘,
    status tinyint(1) not null default 1,
    sex enum(, ) not null default ,
    info text not null default ‘‘,
    pic varchar(100) not null default ‘‘,
    createdTime int(10) not null default 0
)engine=myisam default charset=utf8;

 

任务9user表建表语句