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

正文內(nèi)容

教務(wù)系統(tǒng)課程設(shè)計-wenkub.com

2025-05-07 01:53 本頁面
   

【正文】 其實有時我們會發(fā)現(xiàn)有些東西表面上看起來很乏味,或者很難,但是當(dāng)我們靜下心去研究摸索,我們也會找尋到事物本身的規(guī)律與其獨特的魅力,當(dāng)我們發(fā)現(xiàn)她的神奇之處和其規(guī)律時我們就會漸漸的喜歡上她。 (三) 退出登錄 用戶執(zhí)行相應(yīng)的操作之后,選擇安全退出,點擊安全退出按鈕退出教務(wù)管理系統(tǒng),完成整個教務(wù)管理系統(tǒng)操作。,1235466) 29 查詢結(jié)果 select * from 五、用戶使用說明( 11) 教務(wù)管理系統(tǒng),學(xué)生可使用的功能主要有 :成績查詢,開考計劃查詢,學(xué)生學(xué)籍卡查詢及對教材信息、教師信息、開設(shè)專業(yè)、開課計劃的查詢等。,1235455) insert into values(11,39。,1235433) insert into values(10,39。,1235422) insert into values(9,39。,12354111) insert into values(8,39。,1235411) insert into values(7,39。,123541) insert into values(6,39。,12334) insert into values(5,39。,12354) insert into values(4,39。,1234) insert into values(3,39。,123456) insert into values(2,39。) 查詢結(jié)果 select * from 28 (八)系部管理 ( 11) /*==============================================================*/ /* Table: Departmentform 建立系部信息表 */ /*==============================================================*/ create table Departmentform ( Depar_Id numeric(10) not null, 系部編號 Depar_Name varchar(20) not null, 系部名稱 Depar_Dir varchar(10) not null, 系部主任 Depar_Tel numeric(10) not null, 系部電話 constraint PK_DEPARTMENTFORM primary key nonclustered (Depar_Id) 建立主鍵;系部編號 ) go 數(shù)據(jù)插入 系部 管理插入的相關(guān)信息: insert into values(1,39。,39。,39。) insert into values(4,39。,39。,39。) insert into values(2,39。,39。) insert into values(5,5,2020066,39。) insert into values(3,3,2020064,39。,38) 查詢結(jié)果 select * from (五)教學(xué)管理 ( 11) /*==============================================================*/ /* Table: TeachManage 建立教學(xué)管理表 */ 25 /*==============================================================*/ create table TeachManage ( T_Id numeric(20) null, 教學(xué)編號 Course_Id numeric(10) null, 課程編號 TeachTime datetime not null, 教學(xué)時間 Teach_Add varchar(20) not null 教 學(xué)地址 ) go 數(shù)據(jù)插入 教學(xué)管理插入的相關(guān)信息: insert into values(1,1,2020062,39。,28) insert into values(10,8,39。,39) insert into values(8,6,39。,45) insert into values(6,4,39。,25) insert into values(4,2,39。,40) insert into values(2,1,39。,39。,60,30) insert into values(10,39。,39。,39。,35,88) insert into values(8,39。,39。,39。,600,45) insert into values(6,39。,39。,39。,80,64) insert into values(4,39。,39。,39。,100,1) insert into values(2,39。,39。,39。,39。,39。,39。,39。,39。,39。,39。,39。,39。,39。,167941,19900612) insert into values(39。,109,8,10,39。,39。,163341,19900412) insert into values(39。,107,6,8,39。,39。,119941,19900212) insert into values(39。,105,4,6,39。,39。,149941,19881212) insert into values(39。,103,4,2,39。,39。,165941,19890512) insert into values(39。,101,1,1,39。,39。) drop table 教材發(fā)放 go alter table Classmangement add constraint FK_CLASSMAN_RELATIONS_DEPARTME foreign key (Depar_Id) references Departmentform (Depar_Id) go alter table GradeManagement add constraint FK_GRADEMAN_RELATIONS_STUDENTM foreign key (St_Id) references studentmanage (St_Id) go alter table GradeManagement add constraint FK_GRADEMAN_RELATIONS_COURSEIN foreign key (Course_Id) references Courseinformationform (Course_Id) go alter table TeachManage add constraint FK_TEACHMAN_RELATIONS_COURSEIN foreign key (Course_Id) references Courseinformationform (Course_Id) go alter table TeachManage add constraint FK_TEACHMAN_RELATIONS_TEACHERM foreign key (T_Id) references TeacherManage (T_Id) go alter table TeacherManage add constraint FK_TEACHERM_RELATIONS_COURSEIN foreign key (Course_Id) references Courseinformationform (Course_Id) go alter table studentmanage add constraint FK_STUDENTM_RELATIONS_DEPARTME foreign key (Depar_Id) references Departmentform (Depar_Id) go 19 alter table studentmanage add constraint FK_STUDENTM_RELATIONS_CLASSMAN foreign key (class_id) references Classmangement (class_id) go alter table 教材使用 add constraint FK_教材使用 _教材使用 _COURSEIN foreign key (Course_Id) references Courseinformationform (Course_Id) go alter table 教材使用 add constraint FK_教材使用 _教材使用 2_SBMANAGE foreign key (SUBID) references SBMANAGE (SUBID) go alter table 教材發(fā)放 add constraint FK_教材發(fā)放 _教材發(fā)放 _STUDENTM foreign key (St_Id) references studentmanage (St_Id) go alter table 教材發(fā)放 add constraint FK_教材發(fā)放 _教材發(fā)放 2_SBMANAGE foreign key (SUBID) references SBMANAGE (SUBID) go (一) 學(xué)生管理 ( 11) /*==============================================================*/ /* Table: studentmanage 建立學(xué)生信息表 */ /*==============================================================*/ create table studentmanage ( St_Name varchar(10) not null, 學(xué)生姓名 St_Id numeric(20
點擊復(fù)制文檔內(nèi)容
畢業(yè)設(shè)計相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1