checkfund.sql
来自「十分好的一个医院管理系统」· SQL 代码 · 共 9 行
SQL
9 行
create table checkfund( //统筹基金银行对帐表
checkdate smalldatetime not null, //对帐时间
checkname char(30) not null, //基数名称
dbnum numeric(16,2) not null, //数据库中的值
changenum numeric(14,2) not null, //调整值
stateflag tinyint not null, //状态标志.1-已经调整到数据库。0-未调整
note char(60) null,
constraint p_checkfund primary key nonclustered (checkdate) on 'default');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?