代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/376468/2710420

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/2710421

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
www.eeworm.com/read/376468/2710422

sql personinfo.sql

create table personinfo( unitcode char(6) not null, //单位登记号 personcode char(12) not null, //个人登记号 iccard char(10) null, //IC卡号 district char(24) not null, //单位属地:市区/乡镇 unittype char(24) not nul
www.eeworm.com/read/376468/2710423

sql operator.sql

create table operator( hoscode char(4) not null, //医院编号 loginname char(10) not null, //登录名 fullname char(10) not null, //姓名 sex tinyint not null, //性别:1-男,0-女 belong char(20) not null, //科室名称
www.eeworm.com/read/376468/2710424

sql hosinfo.sql

create table hosinfo( hoscode char(4) not null, //医院登记号 name char(60) not null, //医院名称 district char(24) not null, //医院属性编号 wbcode char(10) null, //五笔码 pycode char(10) null, //拼音码 statefl
www.eeworm.com/read/376468/2710425

sql commarg.sql

create table commarg( argname char(30) not null, //参数名称 argument char(30) not null, //参数值 note char(60) null, //参数说明 constraint p_commarg primary key nonclustered (argname) on 'default');
www.eeworm.com/read/376468/2710426

sql itemtype.sql

create table itemtype( hoscode char(4) not null, typename char(10) not null, //医院收费类型名称 tollname char(10) not null, wbcode char(10) null, //五笔码 pycode char(10) null, //拼音码 effectflag tinyin
www.eeworm.com/read/376468/2710427

sql personphoto.sql

create table personphoto( unitcode char(6) not null, //单位登记号 personcode char(12) not null, //个人登记号 photo image null, //照片 constraint p_photo primary key nonclustered (personcode) on 'default'
www.eeworm.com/read/376468/2710429

sql precons.sql

create table precons( //预收款 hoscode char(4) not null, //医院编号 riceiptcode char(12) not null, //住院明细号 advdate smalldatetime not null, //交预收款日期,精确到秒 department char(20) not null, //科室 precons
www.eeworm.com/read/376468/2710430

sql tollitem.sql

create table tollitem( hoscode char(4) not null, //医院编码 code char(16) not null, //收费项目编码 itemname char(60) not null, //收费项目名称 itemtype char(10) not null, //收费类型 pycode char(10) null,