数据表:t_wf_templatetype_l(模板分类多于言表)

t_wf_templatetype_l(模板分类多于言表):描述

名称

t_wf_templatetype_l(模板分类多于言表)

代码

t_wf_templatetype_l

注释

 

模型

BOS

主键

pk_wf_templatetype_l


t_wf_templatetype_l(模板分类多于言表):列规格定义

名称

代码

数据类型

长度

强制

注释

唯一标识ID

fpkid

int

 

TRUE

 

分类ID

fid

int

 

TRUE

 

时区ID

flocaleid

int

 

TRUE

 

名称

fname

varchar(50)

50

FALSE

 

描述

fdescription

varchar(500)

500

FALSE

 


t_wf_templatetype_l(模板分类多于言表):脚本代码

if exists (select 1
from sysindexes
where id = object_id('t_wf_templatetype_l')
and name = 'idx_wf_templatetype_l'
and indid > 0
and indid < 255)
drop index t_wf_templatetype_l.idx_wf_templatetype_l
go

if exists (select 1
from sysobjects
where id = object_id('t_wf_templatetype_l')
and type = 'U')
drop table t_wf_templatetype_l
go

/*==============================================================*/
/* Table: t_wf_templatetype_l */
/*==============================================================*/
create table t_wf_templatetype_l (
fpkid int not null default 0,
fid int not null default 0,
flocaleid int not null default 0,
fname varchar(50) null,
fdescription varchar(500) null,
constraint PK_WF_TEMPLATETYPE_L primary key (fpkid)
)
go

/*==============================================================*/
/* Index: idx_wf_templatetype_l */
/*==============================================================*/
create unique index idx_wf_templatetype_l on t_wf_templatetype_l (
fid ASC,
flocaleid ASC
)
go


t_wf_templatetype_l(模板分类多于言表):键值定义

名称

代码

主要的

pk_wf_templatetype_l

pk_wf_templatetype_l

TRUE


t_wf_templatetype_l(模板分类多于言表):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_wf_templatetype_l

idx_wf_templatetype_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_wf_templatetype_l(模板分类多于言表)