gl_data_dictionary.sql

来自「工厂采购系统,DELPHI+SQL SERVER,三层技术」· SQL 代码 · 共 26 行

SQL
26
字号
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 + =
减小字号Ctrl + -
显示快捷键?