?? checkin.sql
字號:
create table checkin( //住院登記表
hoscode char(4) not null, //醫院編號
riceiptcode char(20) not null, //住院明細號
unitcode char(6) not null, //單位編號
personcode char(12) not null, //個人編號
sickname char(10) null, //姓名
sex char(2) null, //性別
age integer null, //年齡
department char(16) null, //科室
indate smalldatetime null, //入院時間
outdate smalldatetime null, //出院時間
payflag integer not null, //結算標志:1-已結算,0-未結算
mcflag integer not null, //醫保標志:1-醫保病人,0-自費病人
constraint p_checkin primary key nonclustered (hoscode,riceiptcode) on 'default');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -