⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gl_data_dictionary.sql

📁 工厂采购系统,DELPHI+SQL SERVER,三层技术
💻 SQL
字号:
if object_id('dbo.GL_Data_Dictionary') is not null
drop table dbo.GL_Data_Dictionary
go

Create table GL_Data_Dictionary
(
 Itemseq int identity(1,1) not null primary key,
 Object    varchar(255) not null,
 Item      int not null default 1,
 Field     varchar(255) null,
 identify_flag  char(2) null,
 Pkey      char(2) null,
 Field_Type VARCHAR(255) NULL,
 use_space int ,
 length    int ,
 prec      int,
 NilAllow  char(2) null,
 default_value varchar(255) null,
 Remark   varchar(255) null
)
go




⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -