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

正文內(nèi)容

某單位的人事管理系統(tǒng)數(shù)據(jù)庫課程設(shè)計(編輯修改稿)

2024-09-03 21:14 本頁面
 

【文章內(nèi)容簡介】 人經(jīng)歷表create table 個人經(jīng)歷( 年份 datetime, 員工編號 char(4), 學(xué)習(xí)經(jīng)歷 varchar(50), 任職經(jīng)歷 varchar(50), primary key(年份, 員工編號), foreign key(員工編號) references 員工(員工編號))建立家庭關(guān)系表create table 家庭關(guān)系( 關(guān)系編號 char(10) primary key, 員工編號 char(4) not null, 親屬關(guān)系 char(4), 親屬姓名 char(10), 親屬性別 char(2), foreign key(員工編號) references 員工(員工編號)) 建立管理人員表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 員工(員工編號))建立出勤表create table 出勤( 出勤號 char(6) primary key, 員工編號 char(4) not null, 上班日期 datetime, 上班時間 datetime, 下班時間 datetime, 刷卡機號 char(4),foreign key(員工編號) references 員工(員工編號) foreign key(刷卡機號) references 刷卡機(刷卡機號))建立刷卡機表create table 刷卡機( 刷卡機號 char(4) primary key)建立部門表create table 部門( 部門號 char(4) primary key, 部門名 char(10) not null, 領(lǐng)導(dǎo)人員 char(4) not null, 員工人數(shù) int)建立職位調(diào)動表create table 職位調(diào)動( 調(diào)動編號 char(6) not null, 員工編號 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 部門(部門號))建立請假記錄表create table 請假記錄( 請假編號 char(6) not null primary key, 員工編號 char(4) not null, 請假時間 datetime, 銷假時間 datetime, 請假天數(shù) int, 審批人編號 char(4), foreign key(員工編號) references 員工(員工編號))1建立工資表create table 工資( 工資編號 char(6) primary key, 員工編號 char(4) not null, 基本工資 money not null, 罰款 money, 獎金 money, 結(jié)算工資 money, 起始時間 datetime, 截止時間 datetime, 發(fā)信日期 datetime, foreign key(員工編號) references 員工(員工編號))第5章 數(shù)據(jù)庫完整性設(shè)計 主鍵及唯一性索引表名主鍵建立唯一性索引員工(員工編號)create index 員工_學(xué)歷_index on 員工(學(xué)歷)個人經(jīng)歷(年份,員工編號)create index 個人經(jīng)歷_任職經(jīng)歷_index on 個人經(jīng)歷(任職經(jīng)歷)家庭關(guān)系(關(guān)系編號)create index 家庭關(guān)系_親屬關(guān)系_index on 家庭關(guān)系(親屬關(guān)系)管理人員(管理員帳號)create index 管理人員_index on 管理人員(級別)出勤(出勤號)create index 出勤_上班日期_index on 出勤(上班日期)刷卡機(刷卡機號)create index 刷卡機_index on 刷卡機(刷卡機號)部門(部門號)create index 部門_領(lǐng)導(dǎo)人員_
點擊復(fù)制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1