precons_sp.sql

来自「十分好的一个医院管理系统」· SQL 代码 · 共 9 行

SQL
9
字号
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 + =
减小字号Ctrl + -
显示快捷键?