代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/376468/2710491
sql unittype.sql
create table unittype(
name char(24) not null, //单位类型名称
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
constraint p_utype primary key nonclustered
www.eeworm.com/read/376468/2710492
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/2710493
sql hosoperator.sql
create table hosoperator
(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, //科室名称
pas
www.eeworm.com/read/376468/2710494
sql priaccural.sql
create table priaccrual(
accdate smalldatetime not null, //产生利息时间
filldate smalldatetime null, //利息计入时间:非空时,表明已经计入;为空时,表明未计入
unitcode char(6) not null, //单位登记号
personcode char(6) not null,
www.eeworm.com/read/376468/2710495
sql persontype.sql
create table persontype(
name char(24) not null, //人员类型名称
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
constraint p_ptype primary key nonclust
www.eeworm.com/read/376468/2710496
sql checkfund.sql
create table checkfund( //统筹基金银行对帐表
checkdate smalldatetime not null, //对帐时间
checkname char(30) not null, //基数名称
dbnum numeric(16,2) not null, //数据库中的值
changenum numeric(14,2) not null, //调整值
www.eeworm.com/read/376468/2710497
sql regiontype.sql
create table regiontype(
name char(30) not null,
wbcode char(10) null,
pycode char(10) null,
effectflag char(1) null,
updateflag char(32) null);
www.eeworm.com/read/376468/2710498
sql district.sql
create table district(
name char(24) not null, //单位属地名称
wbcode char(10) null, //五笔码
pycode char(10) null, //拼音码
effectflag tinyint not null, //有效标志
constraint p_district primary key noncluster
www.eeworm.com/read/376468/2710499
sql personproperty.sql
create table personproperty(
district char(24) not null, //单位属地
unittype char(24) not null, //单位类型
persontype char(24) not null, //人员类型
personpay numeric(6,2) not null, //个人筹款参数
unitpay numeric(
www.eeworm.com/read/376468/2710500
sql consproperty.sql
create table consproperty(
hosdistrict char(24) not null, //医院属地
persontype char(24) not null, //个人类型
personcons numeric(4,2) not null, //个人自付比例
wbcode char(10) null, //五笔码
pycode char(10)