学生信息表
创建数据表
use bioinformatic;
create TABLE IF not exists masterInfo(
id int not NULL COMMENT '学生id' auto_increment,
name VARCHAR(20) not NULL,
interest VARCHAR(200) NULL default "None",
honor VARCHAR(200) NULL default "None",
teacherId VARCHAR(40) not NULL,
tel VARCHAR(25) not NULL,
sex VARCHAR(1) not NULL,
school VARCHAR(20) not NULL,
transcript VARCHAR(200) not NULL,
studentExperience VARCHAR(300) NULL default "None",
searchExperience VARCHAR(300) NULL default "None",
imgUrl VARCHAR(50) NULL default "None",
primary key(id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;增加字段
Last updated
Was this helpful?