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

正文內(nèi)容

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

2024-12-16 10:33本頁面

【導(dǎo)讀】{ "error_code": 17, "error_msg": "Open api daily request limit reached" }

  

【正文】 rowth=10%, maxsize=50 ) log on ( name=人事管理系統(tǒng) _日志 , filename=39。D:\SQL\人事管理系統(tǒng) _日志 .ldf39。, size=5, filegrowth=10%, maxsize=10 ) 人事管理系統(tǒng)的數(shù)據(jù)庫設(shè)計 17 go create table 部門 ( 部門號 Char(4) primary key, 部門名 Char(10) not null, 領(lǐng)導(dǎo)人號 Char(4) not null, ) go create table 管理人員 ( 管理員賬號 char(4) primary key, 職工編號 Char(4) not null, 密碼 Char(6) not null, 級別 Char(4) check(級別 in (39。管理員 39。,39。系統(tǒng)管理員 39。)), foreign key (職工編號 ) references 員工 (員工編號 ) ) go create table 刷卡機(jī) ( 刷卡機(jī)號 Char(4) primary key ) create table 員工 ( 員工編號 Char(4) primary key, 姓名 Char(10) not null, 性別 Char(2) check(性別 in(39。男 39。,39。女 39。)), 出生日期 datetime, 學(xué)歷 VarChar(32) not null, 身份證號 VarChar(32) not null, 民族 VarChar(16) not null, 職稱 Char(10), 部門號 char(4), ) go create table 出勤 ( 出勤號 Char(6) primary key, 員工編號 Char(4) not null, 上班日期 datetime not null, 上班時間 datetime not null, 下班時間 datetime not null, 刷卡機(jī)號 Char(4), foreign key (刷卡機(jī)號 ) references 刷卡機(jī) (刷卡機(jī)號 ), 人事管理系統(tǒng)的數(shù)據(jù)庫設(shè)計 18 foreign key (員工編號 ) references 員工 (員工編號 ) ) go create table 工資 ( 工資編號 Char(6) primary key, 員工編號 Char(4) not null, 基本工資 money not null, 罰款 money, 起始時間 Datetime, 截止時間 Datetime, 發(fā)薪日期 Datetime, foreign key (員工編號 ) references 員工 (員工編號 ) ) go create table 職務(wù)調(diào)動 ( 調(diào)動編號 Char(6) not null primary key, 員工編號 Char(4) not null, 調(diào)動前職務(wù) Char(10), 調(diào)動后職務(wù) Char(10), 調(diào)動部門號 Char(4) not null, 調(diào)動日期 Datetime, 批復(fù)日期 Datetime, 調(diào)動原因 VarChar(50), foreign key (員工編號 ) references 員工 (員工編號 ), foreign key (調(diào)動部門號 ) references 部門 (部門號 ) ) create table 獎懲記錄 ( 獎懲編號 Char(6) not null primary key, 員工編號 Char(4) not null, 獎懲類型 Char(4), 獎懲金額 money, 獎懲日期 Datetime, 批復(fù)部門號 Char(4), 批復(fù)日期 Datetime, 獎懲原因 VarChar(50), foreign key (員工編號 ) references 員工 (員工編號 ), foreign key (批復(fù)部門號 ) references 部門 (部門號 ) ) Go 人事管理系統(tǒng)的數(shù)據(jù)庫設(shè)計 19 create table 請假記錄 ( 請假編號 Char(6) not null primary key, 員工編號 Char(4) not null, 請假時間 Datetime, 銷假時間 datetime, 請假天數(shù) int , 審批人編號 Char(4), foreign key (員工編號 ) references 員工 (員工編號 ) ) Go /*索引的建立 */ create index部門 _領(lǐng)導(dǎo)人號 _index on 部門 (領(lǐng)導(dǎo)人號 ) create index 出勤 _學(xué)歷 _index on 出勤 (學(xué)歷 ) create index 出勤 _出生 日期 _index on 員工 (出生 日期 ) create index 出勤 _上班日期 _index on 出勤 (上班日期 ) create index 工資 _基本工資 _index on 工資 (基本工資 ) create index 職務(wù)調(diào)動 _調(diào)動前職務(wù) _index on 職務(wù)調(diào)動 (調(diào)動前職務(wù) ) create index 獎懲記錄 _獎懲類型 _index on 獎懲記錄 (獎懲類型 ) create index 請假記錄 _請假天數(shù) _index on 請假記錄 (請假天數(shù) ) Go 實(shí)驗(yàn)數(shù)據(jù) 的輸入 為了驗(yàn)證所設(shè)計的數(shù)據(jù)庫的性能,在 SQL server 2021上建立的“人事管理系統(tǒng)”數(shù)據(jù)庫 ,輸入了少量的實(shí)驗(yàn)數(shù)據(jù)。 數(shù)據(jù)庫輸入、輸出或查詢模塊的應(yīng)用程序 無。 5 用戶子模式的設(shè)計 無。 6 總結(jié) 由于在數(shù)據(jù)庫的設(shè)計初期, 沒有對人事管理系統(tǒng)進(jìn)行 準(zhǔn)確地 需求分析,導(dǎo)致后期設(shè)計過程中 的 數(shù)據(jù)庫的概念設(shè)計 階段 無法進(jìn)行 。 因此,通 過此次數(shù)據(jù)庫課程設(shè)計 使學(xué)生 認(rèn)識到了需求分析對于軟件系統(tǒng)設(shè)計的重要性。也認(rèn)識到規(guī)范化的設(shè)計流程對于后期的設(shè)計來說,是十分重要的。前面的設(shè)計是后面的鋪墊,只有對前面的設(shè)計過程進(jìn)行準(zhǔn)確地分析,才能節(jié)省 整個 系統(tǒng)的開發(fā)時間。最后,通過此次數(shù)據(jù)庫課程設(shè)計使學(xué)生初步理解了簡單數(shù)據(jù)庫的一般開發(fā)流程 ,以及數(shù)據(jù)流圖和 ER 圖等專業(yè)圖形地繪制 。 人事管理系統(tǒng)的數(shù)據(jù)庫設(shè)計 20????
點(diǎn)擊復(fù)制文檔內(nèi)容
醫(yī)療健康相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1