?? unitinfo.sql
字號:
create table unitinfo(
unitcode char(6) not null, //醫(yī)保登記號
name char(60) not null, //單位名稱
district char(24) not null, //單位屬地
unittype char(24) not null, //單位類型
paypercent numeric(8,2) not null, //單位繳費比例
p_paypercent numeric(8,2) not null, //個人繳費比例
address char(60) null, //單位地址
upperunit char(60) null, //主管部門
legalrep char(16) null, //單位法人代表
repduty char(16) null, //法人代表職務
linkman char(16) null, //聯(lián)系人
tele char(16) null, //電話
fax char(16) null, //傳真
bank char(60) null, //開戶銀行
account char(60) null, //銀行帳戶
accname char(60) null, //開戶姓名
bookindate smalldatetime null, //參保日期
builddate smalldatetime null, //建戶日期
logoutdate smalldatetime null, //銷戶日期
audityear smalldatetime not null, //審核年份
employs smallint not null, //在職職工總人數(shù)
sumwage numeric(10,2) not null, //在職職工工資總額
dispercent numeric(8,2) not null, //在職職工劃入比例
t_employs smallint not null, //退休人員總人數(shù)
t_sumwage numeric(10,2) not null, //退休人員工資總額
t_dispercent numeric(8,2) not null, //退休人員劃入比例
l_employs smallint not null, //離休人員總人數(shù)
l_sumwage numeric(10,2) not null, //離休人員工資總額
gs_paypercent numeric(8,2) null,
gspay numeric(10,2) null,
sy_paypercent numeric(8,2) null,
sypay numeric(10,2) null,
wbcode char(10) null, //五筆碼
pycode char(10) null, //拼音碼
fundflag tinyint not null, //撥款標志
stateflag tinyint not null, //狀態(tài)標志
updateflag char(60) null,
constraint p_uinfo primary key nonclustered (unitcode) on 'default');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -