代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/376468/2710502
sql unitproperty.sql
create table unitproperty(
district char(24) not null, //单位属地
unittype char(24) not null, //单位类型
payper numeric(4,2) not null, //单位筹款比例
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
www.eeworm.com/read/376468/2710503
sql hosproperty.sql
create table hosproperty(
district char(24) not null, //医院属地
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
updateflag char(30) null, //更新标志
con
www.eeworm.com/read/376468/2710504
sql unitpay.sql
create table unitpay(
unitcode char(6) not null, //单位编号
feedate smalldatetime not null, //费用缴纳月份/年度
unitpaydate smalldatetime not null, //交费日期
paytype tinyint not null, //缴纳类型:1-按月缴纳;2-按季度缴纳
www.eeworm.com/read/376468/2710505
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/2710506
sql listtable.sql
create table listtable(
unitcode char(6) not null,
listmonth smalldatetime not null,
flowcode char(12) null,
r1 smallint null,
r2 smallint null,
z1 numeric(10,2) null,
z2 numeric(10,2) null,
p
www.eeworm.com/read/376468/2710507
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/2710508
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, //单位类型
paypercent numeric(8,2) not null,
www.eeworm.com/read/376468/2710509
sql unitpaylist.sql
create table unitpaylist(
unitcode char(6) not null,
feedate smalldatetime not null, //为哪个月份/年度的费用
personcode char(12) not null,
iccard char(10) null, //卡号
name char(16) not null, //姓名
www.eeworm.com/read/376468/2710510
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/2710511
sql hosdoctor.sql
create table hosdoctor
(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(