--主框架使用表
/* ============================================================ */
/* 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 系統(tǒng)工作狀態(tài) */
/* ============================================================ */
if not exists(select * from sysobjects where name='xtgzzt')
begin
create table xtgzzt
(
xtrq ut_rq8 not null, --系統(tǒng)日期
ver ut_dm12 not null, --版本號
xtzt ut_zt not null, --系統(tǒng)狀態(tài)
kzbz ut_zt not null --控制標(biāo)志
)
insert into xtgzzt(xtrq,ver,xtzt,kzbz) values ('20010911','kwhis40','1','1')
end
go
/* ============================================================ */
/* Table: xtdldm 系統(tǒng)大類代碼 */
/* ============================================================ */
if not exists(select * from sysobjects where name='xtdldm')
begin
create table xtdldm
( |
|