freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

教室管理信息系統(tǒng)的數(shù)據(jù)庫設(shè)計-資料下載頁

2025-08-07 07:03本頁面
  

【正文】 ========================================*/create table 教室借用 ( 學(xué)號 char(20) not null, 教室_教室編號 char(10) not null, 教室編號 char(10) not null, 使用人編號 char(20) not null, 使用日期 datetime not null, 使用時間段 datetime not null, 用途 char(10) null, constraint PK_教室借用 primary key (學(xué)號, 教室_教室編號))go/*==============================================================*//* Index: 教室借用_FK *//*==============================================================*/create index 教室借用_FK on 教室借用 (學(xué)號 ASC)go/*==============================================================*//* Index: 教室借用2_FK *//*==============================================================*/create index 教室借用2_FK on 教室借用 (教室_教室編號 ASC)go/*==============================================================*//* Table: 教師 *//*==============================================================*/create table 教師 ( 教師編號 char(20) not null, 院系號 char(10) null, 教師姓名 char(10) null, 性別 char(10) null, 所屬院系 char(10) null, 職稱 char(10) null, 身份證號 char(20) null, constraint PK_教師 primary key nonclustered (教師編號))go/*==============================================================*//* Index: 隸屬于_FK *//*==============================================================*/create index 隸屬于_FK on 教師 (院系號 ASC)go/*==============================================================*//* Table: 課程 *//*==============================================================*/create table 課程 ( 課程號 char(10) not null, 課程名稱 char(10) null, 學(xué)分 char(10) null, 課程類型 char(10) null, 開課院系 char(10) null, constraint PK_課程 primary key nonclustered (課程號))go/*==============================================================*//* Table: 院系 *//*==============================================================*/create table 院系 ( 院系號 char(10) not null, 院系名稱 char(10) null, constraint PK_院系 primary key nonclustered (院系號))goalter table Association_3 add constraint FK_ASSOCIAT_ASSOCIATI_課程 foreign key (課程號) references 課程 (課程號)goalter table Association_3 add constraint FK_ASSOCIAT_ASSOCIATI_教室 foreign key (教室編號) references 教室 (教室編號)goalter table 上課 add constraint FK_上課_上課_教師 foreign key (教師_教師編號) references 教師 (教師編號)goalter table 上課 add constraint FK_上課_上課2_課程 foreign key (課程_課程號) references 課程 (課程號)goalter table 上課 add constraint FK_上課_上課3_教室 foreign key (教室_教室編號) references 教室 (教室編號)goalter table 學(xué)生 add constraint FK_學(xué)生_RELATIONS_院系 foreign key (院系_院系號2) references 院系 (院系號)goalter table 學(xué)生 add constraint FK_學(xué)生_屬于_院系 foreign key (院系_院系號) references 院系 (院系號)goalter table 教室 add constraint FK_教室_位置于_教學(xué)樓 foreign key (教學(xué)樓_教學(xué)樓號) references 教學(xué)樓 (教學(xué)樓號)goalter table 教室借用 add constraint FK_教室借用_教室借用_學(xué)生 foreign key (學(xué)號) references 學(xué)生 (學(xué)號)goalter table 教室借用 add constraint FK_教室借用_教室借用2_教室 foreign key (教室_教室編號) references 教室 (教室編號)goalter table 教師 add constraint FK_教師_隸屬于_院系 foreign key (院系號) references 院系 (院系號)go
點擊復(fù)制文檔內(nèi)容
數(shù)學(xué)相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1