--主框架使用表
/* ============================================================ */
/* Table: hzpytmp 拼音库 */
/* ============================================================ */
if not exists(select * from sysobjects where name='hzpytmp')
create table hzpytmp
(
bsm char(1) null, --拼音
bhz char(2) not null, --汉字
wbm char(1) null, --五笔
constraint pk_hzpytmp primary key (bhz)
)
go
/* ============================================================ */
/* Table: xtgzzt 系统工作状态 */
/* ============================================================ */
if not exists(select * from sysobjects where name='xtgzzt')
begin
create table xtgzzt
(
xtrq ut_rq8 not null, --系统日期
ver ut_dm12 not null, --版本号
xtzt ut_zt not null, --系统状态
kzbz ut_zt not null --控制标志
)
insert into xtgzzt(xtrq,ver,xtzt,kzbz) values ('20010911','kwhis40','1','1')
end
go
/* ============================================================ */
/* Table: xtdldm 系统大类代码 */
/* ============================================================ */
if not exists(select * from sysobjects where name='xtdldm')
begin
create table xtdldm
( |
|