create table t_shengjing(
pinyin text not null default '',
juancn text not null default '',
juanen text not null default '',
shortcn text not null default '',
shorten text not null default '',
zhang int not null default 0,
jie int not null default 0,
hhb text not null default '',
niv text not null default '',
ncb text not null default '',
lcc text not null default '',
tcb text not null default ''
);
create table t_shengjing(
id int not null identity (1,1),
pinyin nvarchar(max) not null default '',
juancn nvarchar(max) not null default '',
juanen nvarchar(max) not null default '',
shortcn nvarchar(max) not null default '',
shorten nvarchar(max) not null default '',
zhang int not null default 0,
jie int not null default 0,
hhb nvarchar(max) not null default '',
niv nvarchar(max) not null default '',
ncb nvarchar(max) not null default '',
lcc nvarchar(max) not null default '',
tcb nvarchar(max) not null default '',
primary key(id)
);