婚姻介绍所管理系统设计内容摘要:

ForgethersInformationsgoif exists (select 1 from sysindexes where id = object_id(39。 TrystInformations39。 ) and name = 39。 Associators_TrystInformations_FK39。 and indid 0 and indid 255) drop index goif exists (select 1 from sysobjects where id = object_id(39。 TrystInformations39。 ) and type = 39。 U39。 ) drop table TrystInformationsgo/*==============================================================*//* Table: Associators *//*==============================================================*/create table Associators ( aid int not null, password varchar(20) null, name varchar(20) not null, sex bit not null, birthday datetime not null, age int null, image image not null, luckanimal varchar(2) null, constellation varchar(6) null, nation varchar(20) not null, identitycard varchar(18) not null, politicsstate varchar(20) null, county varchar(20) null, homeadd varchar(20) not null, residence varchar(10) null, height real null, weight real null, bodytape varchar(20) null, healthstate varchar(6) not null, edubackground varchar(6) not null, major varchar(20) null, college varchar(20) null, inemonth int not null, familymembers varchar(20) not null, housestate varchar(6) null, carstate varchar(6) null, marriagestate varchar(6) not null, workunit varchar(20) not null, unitquality varchar(20) null, profession varchar(20) null, appellation varchar(20) null, workadd varchar(20) null, characters varchar(6) null, 使用了character数据类型关键字,现在改为characters interest varchar(20) null, skill varchar(20) null, phone varchar(11) not null, qq varchar(10) not null, varchar(50) not null, jointime datetime not null, updatetime datetime not null, states varchar(6) not null, 使用了state关键字,现在给为states trystcounts int null, constraint PK_ASSOCIATORS primary key nonclustered (aid))godeclare @CurrentUser sysnameselect @CurrentUser = user_name()execute sp_addextendedproperty 39。 MS_Description39。 , 39。 会员基本信息记录了有关会员的详细信息 涉及到的对会员信息查找,修改,添加的操作均来自这张表 会员信息中的关键信息应采用加密算法使得信息能够安全存储39。 , 39。 user39。 , @CurrentUser, 39。 table39。 , 39。 Associators39。 go/*==============================================================*//* Table: ForgetherInformations *//*==============================================================*/create table ForgetherInformations ( fid int not null, fAddress varchar(20) not null, ftime datetime not null, ffee double precision not null, contents text not null, fstate varchar(6) not null, constraint PK_FORGETHERINFORMATIONS primary key nonclustered (fid))godeclare @CurrentUser sysnameselect @CurrentUser = user_name()execute sp_addextendedproperty 39。 MS_Description39。 , 39。 婚介中心会在一定的时间段举行一个会员的集体活动 这也是一种婚介的方式,通过集体活动是会员们能够认识和了解与其交往的男士或者女士39。 , 39。 user39。 , @CurrentUser, 39。 table39。 , 39。 ForgetherInformations39。 go/*==============================================================*//* Table: JoinForgethersInformations *//*==============================================================*/create table JoinForgethersInformations ( aid int not null, fid int not null, remark varchar(20) null)godeclare @CurrentUser sysnameselect @CurrentUser = user_name()execute sp_addextendedproperty 39。 MS_Description39。 , 39。 记录每一次活动的信息 会员信息39。 , 39。 user39。 , @CurrentUser, 39。 table39。 , 39。 JoinForgethersInformations39。 go/*==============================================================*//* Index: JoinForgethersInformations_ForgethersInfromations_FK *//*==============================================================*/create index JoinForgethersInformations_ForgethersInfromations_FK on JoinForgethersInformations (fid ASC)go/*==============================================================*//* Index: JoinForgethersInformations_Associators_FK *//*==============================================================*/create index JoinForgethersInformations_Associators_FK on JoinForgethersInformations (aid ASC)go/*============================================。
阅读剩余 0%
本站所有文章资讯、展示的图片素材等内容均为注册用户上传(部分报媒/平媒内容转载自网络合作媒体),仅供学习参考。 用户通过本站上传、发布的任何内容的知识产权归属用户或原始著作权人所有。如有侵犯您的版权,请联系我们反馈本站将在三个工作日内改正。