数据表:t_meta_topclass_l(子系统分组多语言)

t_meta_topclass_l(子系统分组多语言):描述

名称

t_meta_topclass_l(子系统分组多语言)

代码

T_META_TOPCLASS_L

注释

 

模型

BOS

主键

pk_meta_topclass_l


t_meta_topclass_l(子系统分组多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FPKID

varchar(36)

36

TRUE

 

子系统分组编码

FTOPCLASSID

varchar(36)

36

TRUE

 

语言

FLOCALEID

int

 

TRUE

 

名称

FNAME

nvarchar(50)

50

FALSE

 

提示

FTOOLTIPS

nvarchar(100)

100

FALSE

 


t_meta_topclass_l(子系统分组多语言):脚本代码

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

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

/*==============================================================*/
/* Table: T_META_TOPCLASS_L */
/*==============================================================*/
create table T_META_TOPCLASS_L (
FPKID varchar(36) not null default newid(),
FTOPCLASSID varchar(36) not null default '',
FLOCALEID int not null default 0,
FNAME nvarchar(50) null,
FTOOLTIPS nvarchar(100) null,
constraint pk_meta_topclass_l primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_meta_topclass_l */
/*==============================================================*/
create unique index idx_meta_topclass_l on T_META_TOPCLASS_L (
FTOPCLASSID ASC,
FLOCALEID ASC
)
go


t_meta_topclass_l(子系统分组多语言):键值定义

名称

代码

主要的

pk_meta_topclass_l

pk_meta_topclass_l

TRUE


t_meta_topclass_l(子系统分组多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_meta_topclass_l

idx_meta_topclass_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_meta_topclass_l(子系统分组多语言)