代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/376468/2710512
sql operator.sql
create table operator
(loginname char(10) not null, //登录名
fullname char(10) not null, //姓名
sex tinyint not null, //性别:1-男,0-女
belong char(20) not null, //科室名称
password char(20) not null, //登录口
www.eeworm.com/read/376468/2710513
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/2710514
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/2710515
sql dislist.sql
create table dislist(
unitcode char(6) not null,
personcode char(12) not null,
name char(16) not null,
audityear smalldatetime not null,
bookindate smalldatetime not null,
thisadd numeric(8,2) n
www.eeworm.com/read/376468/2710516
sql hosinfo.sql
create table hosinfo(
hoscode char(4) not null, //医院登记号
name char(60) not null, //医院名称
district char(24) not null, //医院属性编号
address char(60) null, //地址
tele char(18) null, //电话
dialno ch
www.eeworm.com/read/376468/2710517
sql icdname.sql
create table icdname(
seqno int null,
icdname char(60) not null,
constraint p_icd primary key nonclustered (icdname) on 'default');
www.eeworm.com/read/376468/2710518
sql hosdepartment.sql
create table hosdepartment
(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 no
www.eeworm.com/read/376468/2710519
sql commarg.sql
create table commarg(
argname char(30) not null, //参数名称
argument char(30) not null, //参数值
note char(60) null, //参数说明
updateflag char(60) null, //更新标志
constraint p_commarg primary key nonclus
www.eeworm.com/read/376468/2710520
sql bzfylx.sql
create table bzfylx(
fylx char(10) not null,
constraint p_bzfylx primary key nonclustered (fylx) on 'default');
www.eeworm.com/read/376468/2710521
sql personphoto.sql
create table personphoto(
unitcode char(6) not null, //单位登记号
personcode char(12) not null, //个人登记号
photo image null, //照片
updateflag char(60) null, //更新标志
constraint p_photo primary key non