?? advnote.sql
字號:
create table advnote( //醫囑說明
hoscode char(4) not null, //醫院編號
riceiptcode char(20) not null, //住院明細號
notedate smalldatetime not null, //醫囑日期
seqno integer not null, //醫囑序號
unitcode char(6) not null, //單位編號
personcode char(12) not null, //醫療證號
doctor char(10) null, //醫生
note varchar(255) not null, //醫囑
updateflag tinyint null, //更新標志
constraint p_checkin primary key nonclustered (hoscode,riceiptcode,notedate,seqno) on 'default');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -