tolltype.sql
来自「十分好的一个医院管理系统」· SQL 代码 · 共 8 行
SQL
8 行
create table tolltype(
hoscode char(4) not null,
tollname char(10) not null, //医保中心收费项目类型名称:中药费/西药费/床位费/检查费/治疗费/特治费/特检费
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
updateflag char(30) null, //更新标志
constraint p_itemtype primary key nonclustered (hoscode,tollname) on 'default');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?