📄 precons_sp.sql
字号:
create table precons_sp( //预收款
hoscode char(4) not null, //医院编号
riceiptcode char(12) not null, //住院明细号
advdate smalldatetime not null, //交预收款日期,精确到秒
department char(20) not null, //科室
precons numeric(8,2) not null, //预收款
operator char(10) not null, //操作员
note char(255) null, //备注
constraint p_pcons primary key nonclustered (hoscode,riceiptcode,advdate) on 'default');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -