Open Nav

驾校管理系统(计算机数据库课程设计)(6)

以下是资料介绍,如需要完整的请充值下载.
1.无需注册登录,支付后按照提示操作即可获取该资料.
2.资料以网页介绍的为准,下载后不会有水印.仅供学习参考之用.
   帮助中心
资料介绍:

7. 物理设计和实施
得到系统逻辑模型后,就该进行数据库的物理设计和实施数据库了,物理设计主要是要确定数据库的存储路径、存储结构以及如何建立索引等,可以采用系统的默认设置。数据库实施主要包括在具体的DBMS中创建数据库和表的过程,有关创建数据库和关系表的SQL语句如下所示:
通过转换的规则,得出了关系模式。为了提高数据的可修改性,完整性和一致性,采用了关系数据的方法,尽可能简化数据存储的数据结构。
对关系模式进行关系规范化后得出以下表及相关字段:
/*==============================================================*/
/* DBMS name:      Sybase AS Anywhere 9                         */
/* Created on:     2008-4-17 19:55:57                           */
/*==============================================================*/
[资料来源:www.doc163.com]

/*==============================================================*/
/* Table: chengjibiao                                           */
/*==============================================================*/
create table chengjibiao
(
    lilunchengji         integer,
    shangchechengji      integer,
    jiazhao              integer,
    xuhao                integer                        not null, [来源:http://www.doc163.com]
    constraint PK_CHENGJIBIAO primary key (xuhao)
);

[资料来源:http://doc163.com]

/*==============================================================*/
/* Index: chengjibiao_PK                                        */
/*==============================================================*/
create unique index chengjibiao_PK on chengjibiao (
xuhao ASC
); [来源:http://Doc163.com]

/*==============================================================*/
/* Table: cizhi                                                 */
/*==============================================================*/
create table cizhi
(
    zhiwu                char(10),
    cizhibianhao         integer                        not null,
    constraint PK_CIZHI primary key (cizhibianhao)
);

[来源:http://Doc163.com]

/*==============================================================*/
/* Index: cizhi_PK                                              */
/*==============================================================*/
create unique index cizhi_PK on cizhi (
cizhibianhao ASC
);

[资料来源:http://doc163.com]

/*==============================================================*/
/* Table: cizhishu                                              */
/*==============================================================*/
create table cizhishu
(
    yuangonghao          integer                        not null,
    cizhibianhao         integer                        not null,
    constraint PK_CIZHISHU primary key clustered (yuangonghao, cizhibianhao)

[来源:http://www.doc163.com]

);
[版权所有:http://DOC163.com]

/*==============================================================*/
/* Index: cizhishu_PK                                           */
/*==============================================================*/
create unique index cizhishu_PK on cizhishu (
yuangonghao ASC,
cizhibianhao ASC
);

[来源:http://Doc163.com]

/*==============================================================*/
/* Index: cizhishu_FK                                           */
/*==============================================================*/
create  index cizhishu_FK on cizhishu (
yuangonghao ASC
);

[资料来源:www.doc163.com]

/*==============================================================*/
/* Index: cizhishu2_FK                                          */
/*==============================================================*/
create  index cizhishu2_FK on cizhishu (
cizhibianhao ASC
);

[资料来源:http://doc163.com]

/*==============================================================*/
/* Table: feiyong                                               */
/*==============================================================*/
create table feiyong
(
    bukaofei             integer,
    baomingfei           integer,
    jiluhao              integer                        not null,
    constraint PK_FEIYONG primary key (jiluhao)

[资料来源:http://doc163.com]


);

[资料来源:Doc163.com]

/*==============================================================*/
/* Index: feiyong_PK                                            */
/*==============================================================*/
create unique index feiyong_PK on feiyong (
jiluhao ASC
); [资料来源:www.doc163.com]

/*==============================================================*/
/* Table: jianli                                                */
/*==============================================================*/
create table jianli
(
    yuangonghao          integer                        not null,
    qiuzhibianhao        integer                        not null,
    constraint PK_JIANLI primary key clustered (yuangonghao, qiuzhibianhao)

[来源:http://Doc163.com]

);

[来源:http://www.doc163.com]

/*==============================================================*/
/* Index: jianli_PK                                             */
/*==============================================================*/
create unique index jianli_PK on jianli (
yuangonghao ASC,
qiuzhibianhao ASC
);

[资料来源:Doc163.com]

/*==============================================================*/
/* Index: jianli_FK                                             */
/*==============================================================*/
create  index jianli_FK on jianli (
yuangonghao ASC
);

[资料来源:http://Doc163.com]

/*==============================================================*/
/* Index: jianli2_FK                                            */
/*==============================================================*/
create  index jianli2_FK on jianli (
qiuzhibianhao ASC
); [来源:http://Doc163.com]

/*==============================================================*/
/* Table: "jiao 、lian"                                          */
/*==============================================================*/
create table "jiao 、lian"
(
    xuehao               integer                        not null,
    yuangonghao          integer                        not null,
    constraint "PK_JIAO 、LIAN" primary key clustered (xuehao, yuangonghao) [资料来源:http://Doc163.com]
);

[资料来源:Doc163.com]

/*==============================================================*/
/* Index: "jiao 、lian_PK"                                       */
/*==============================================================*/
create unique index "jiao 、lian_PK" on "jiao 、lian" (
xuehao ASC,
yuangonghao ASC
); [来源:http://Doc163.com]

/*==============================================================*/
/* Index: "jiao 、lian_FK"                                       */
/*==============================================================*/
create  index "jiao 、lian_FK" on "jiao 、lian" (
xuehao ASC
); [资料来源:http://www.doc163.com]

/*==============================================================*/
/* Index: "jiao 、lian2_FK"                                      */
/*==============================================================*/
create  index "jiao 、lian2_FK" on "jiao 、lian" (
yuangonghao ASC
);

[资料来源:http://www.doc163.com]

/*==============================================================*/
/* Table: jiaofei                                               */
/*==============================================================*/
create table jiaofei
(
    xuehao               integer                        not null,
    jiluhao              integer                        not null,

[资料来源:www.doc163.com]

    constraint PK_JIAOFEI primary key clustered (xuehao, jiluhao)
); [来源:http://www.doc163.com]

/*==============================================================*/
/* Index: jiaofei_PK                                            */
/*==============================================================*/
create unique index jiaofei_PK on jiaofei (
xuehao ASC,
jiluhao ASC
); [来源:http://www.doc163.com]

/*==============================================================*/
/* Index: jiaofei_FK                                            */
/*==============================================================*/
create  index jiaofei_FK on jiaofei (
xuehao ASC
);

[来源:http://www.doc163.com]

/*==============================================================*/
/* Index: jiaofei2_FK                                           */
/*==============================================================*/
create  index jiaofei2_FK on jiaofei (
jiluhao ASC
);

[来源:http://www.doc163.com]

/*==============================================================*/
/* Table: jiaolian                                              */
/*==============================================================*/
create table jiaolian
(
    name                 char(8),
    yuangonghao          integer                        not null,
    jiazhaoxinghao       char(2),
    gongling             integer,

[资料来源:http://doc163.com]


    zhigongzhiwu         char(10),
    zaizhiqingkuang      char(10),
    constraint PK_JIAOLIAN primary key (yuangonghao)
); [来源:http://Doc163.com]

/*==============================================================*/
/* Index: jiaolian_PK                                           */
/*==============================================================*/
create unique index jiaolian_PK on jiaolian (
yuangonghao ASC
); [资料来源:http://www.doc163.com]

/*==============================================================*/
/* Table: kaoshi                                                */
/*==============================================================*/
create table kaoshi
(
    xuehao               integer                        not null,
    xuhao                integer                        not null, [资料来源:http://doc163.com]
    constraint PK_KAOSHI primary key clustered (xuehao, xuhao)
);

[来源:http://Doc163.com]

/*==============================================================*/
/* Index: kaoshi_PK                                             */
/*==============================================================*/
create unique index kaoshi_PK on kaoshi (
xuehao ASC,
xuhao ASC
);

[资料来源:www.doc163.com]

/*==============================================================*/
/* Index: kaoshi_FK                                             */
/*==============================================================*/
create  index kaoshi_FK on kaoshi (
xuehao ASC
);

[资料来源:http://doc163.com]

/*==============================================================*/
/* Index: kaoshi2_FK                                            */
/*==============================================================*/
create  index kaoshi2_FK on kaoshi (
xuhao ASC
); [资料来源:http://Doc163.com]

/*==============================================================*/
/* Table: qiuzhi                                                */
/*==============================================================*/
create table qiuzhi
(
    qiuzhibianhao        integer                        not null,
    zhiwu1               char(10),
    xueyuanchehaofenpei  char(20),
    constraint PK_QIUZHI primary key (qiuzhibianhao)
);

[版权所有:http://DOC163.com]

/*==============================================================*/
/* Index: qiuzhi_PK                                             */
/*==============================================================*/
create unique index qiuzhi_PK on qiuzhi (
qiuzhibianhao ASC
); [来源:http://Doc163.com]

/*==============================================================*/
/* Table: xueyuan                                               */
/*==============================================================*/
create table xueyuan
(
    xuehao               integer                        not null,
    danganhao            integer,
    xingming             char(8),
    peixunqishu          integer,

[资料来源:http://doc163.com]

    shenqingchexing      char(4),
    constraint PK_XUEYUAN primary key (xuehao)
);

[资料来源:Doc163.com]

/*==============================================================*/
/* Index: xueyuan_PK                                            */
/*==============================================================*/
create unique index xueyuan_PK on xueyuan (
xuehao ASC
);

  • 关于资料
    提供的资料属本站所有,真实可靠,确保下载的内容与网页资料介绍一致.
  • 如何下载
    提供下载链接或发送至您的邮箱,资料可重复发送,若未收到请联系客服.
  • 疑难帮助
    下载后提供一定的帮助,收到资料后若有疑难问题,可联系客服提供帮助.
  • 关于服务
    确保下载的资料和介绍一致,如核实与资料介绍不符,可申请售后.
  • 资料仅供参考和学习交流之用,请勿做其他非法用途,转载必究,如有侵犯您的权利或有损您的利益,请联系本站,经查实我们会立即进行修正! 版权所有,严禁转载
    doc163.com Copyright © 2012-2024 苏ICP备2021029856号-4