文档介绍:表名:管理员表
字段:编号 int not null primary key identity(1,1),用户名 char(20) not null,密码 char(20) not null。
表名:学生信息表
字段:编号 int not null primary key identity(1,1),姓名 char(20) not null,身份证号码 char(18) not null,准考证号 char(20) not null,等级编号 int null
表名:题库表
字段:编号int not null primary key identity(1,1)
表名:选择题表
字段:编号int not null primary key identity(1,1),题库编号 int foreign key references 题库表(编号),题 char(100) not null,选项A char(50) not null ,选项B char(50) not null,选项C char(50) not null,选项D char(50) not null
表名:填空题表
字段:编号int not null primary key identity(1,1),题库编号int foreign key references 题库表(编号),题char(100) not null
表名:判断题
字段:编号int not null primary key identity(1,1),题库编号int foreign key references 题库表(编号),题char(100) not null
表名:答案库表
字段:编号int not null primary key identity(1,1),题库编号int foreign key references 题库表(编号),选择题答案编号int foreign key references 选择题答案表(编号),填空题答案编号int foreign key references 填空题答案表(编号),判断题答案编号int foreign key references 判断题答案表(编号)
表名:选择题答案表
字段:编号int not null primary key identity(1,1),选择题编号int foreign key references 选择题表(编号),选择题答案char(10) not null;
表名:填空题答案表
字段:编号 i nt not null primary key identity(1,1),填空题编号int foreign key references 填空题表(编号),填空题答案 char(50) not null
表名:判断题答案表
字段:编号i nt not null primary key identity(1,1),判断题编号int foreign key references 判断题表(编号),判断题答案 char(50) not null;
表名:等级表
字段:编号i nt not null primary key identity(1,1),级别 char(10) not null
表名:成绩表
字段: