代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/376468/2710432
sql tolltype.sql
create table tolltype(
tollname char(10) not null, //医保中心收费项目类型名称:中药费/西药费/床位费/检查费/治疗费/特治费/特检费
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
const
www.eeworm.com/read/376468/2710450
sql advnote.sql
create table advnote( //医嘱说明
hoscode char(4) not null, //医院编号
riceiptcode char(20) not null, //住院明细号
notedate smalldatetime not null, //医嘱日期
seqno integer not null, //医嘱序号
unitcode cha
www.eeworm.com/read/376468/2710451
sql cqyz.sql
create table cqyz( //长期医嘱表
hoscode char(4) not null, //医院登记号
riceiptcode char(12) not null, //处方(住院明细)号
advdate smalldatetime not null, //医嘱开出时间
doctor char(10) not null, //开嘱医生
seqno sma
www.eeworm.com/read/376468/2710452
sql department.sql
create table department
(hoscode char(4) not null,
code char(2) not null,
name char(20) not null,
pycode char(5) null,
wbcode char(5) null,
effectflag tinyint not null,
updateflag tinyint not n
www.eeworm.com/read/376468/2710455
sql mcrecord.sql
create table mcrecord(
hoscode char(4) not null, //医院登记号
riceiptcode char(12) not null, //处方(住院明细)号
riceipttype tinyint not null, //对于门诊:1-处方,2-处置,3-检查,对于住院,缺省值为1,无意义
bankriceipt char(12) nu
www.eeworm.com/read/376468/2710456
sql autocode.sql
create table autocode(
title char(30) not null, //名称
autocode char(30) not null, //可用编号
note varchar(60) null,
constraint p_autocode primary key nonclustered (title) on 'default'); //说明
www.eeworm.com/read/376468/2710458
sql unitinfo.sql
create table unitinfo(
unitcode char(6) not null, //医保登记号
name char(60) not null, //单位名称
district char(24) not null, //单位属地
unittype char(24) not null, //单位类型
audityear smalldatetime not null,
www.eeworm.com/read/376468/2710459
sql checkin.sql
create table checkin( //住院登记表
hoscode char(4) not null, //医院编号
riceiptcode char(20) not null, //住院明细号
unitcode char(6) not null, //单位编号
personcode char(12) not null, //个人编号
sickname char(10
www.eeworm.com/read/376468/2710460
sql doctor.sql
create table doctor
(hoscode char(4) not null,
code char(4) not null, //编号
name char(10) not null, //姓名
sex tinyint not null, //性别:1-男,0-女
belong char(20) not null, //科室名称
pycode char(5)
www.eeworm.com/read/376468/2710461
sql mcrecordlist.sql
create table mcrecordlist(
hoscode char(4) not null, //医院登记号
riceiptcode char(12) not null, //处方(住院明细)号
advdate smalldatetime not null, //医嘱开出时间
doctor char(10) not null, //开嘱医生
seqno smallin