数据库课程设计研究生招生信息管理系统 下载本文

内容发布更新时间 : 2024/6/18 6:32:44星期一 下面是文章的全部内容请认真阅读。

4.3系统实施 4.3.1数据库实现 1、考生档案 create table 考生档案 ( 考号 nchar(20) primary key , 姓名 char(20) not null, 性别 smallint (2) check (考生_xb='男' or考生_xb ='女'), 年龄 char(2) not null, 政治面貌 char(10) not null, 是否应届 char(2) check (考生_sfyj ='男' or考生_sfyj ='女'), 学历 char (10) not null, 来源 char (30) not null, 报考专业 char (20) not null, 报考类别 char(10) not null ) tablespace 考生档案_data; 2、考生成绩 create table 考生成绩 ( 考号 char(20) primary key , 姓名 char(10) not null, 政治 char (3) not null, 外语 char (3) not null, 基础科目 char (3) not null, 专业基础科目 char (3) not null, 专业科目 char (3) not null, ) Tablespace考生成绩 _data; 3、录取名单 create table录取名单 ( 考号 char(20) primary key, 录取单位 char(20) not null, 复试科目 char(20) not null, 复试成绩 char(3) not null ) tablespace 录取名单_data; 4、专业字典 create table 专业字典 ( 专业代码 char(20) not null, 专业成绩 char(15) not null , 计划内招生数 char(4) not null, 计划外招生数 char(4) not null ) Tablespace专业字典 _data; 4.3.2 数据载入 1.载入考生档案信息