advnote_sp.sql
来自「十分好的一个医院管理系统」· SQL 代码 · 共 11 行
SQL
11 行
create table advnote_sp( //医嘱说明(自费)
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 + =
减小字号Ctrl + -
显示快捷键?