代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/376468/2710462
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/2710463
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/2710464
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/2710465
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/2710466
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/2710467
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/2710469
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/2710470
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,
www.eeworm.com/read/376468/2710472
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/2710489
sql commarg.sql
CREATE TABLE commarg (
argname char(30),
argument char(30),
note char(60),
updateflag char(60));
INSERT INTO commarg VALUES (
'auditstart',
'1/1',
'医保年度起始日期,格式为月/日',
NULL);
INSERT IN