tb_gl_uom_convert.sql

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

SQL
22
字号
if object_id('dbo.GL_UoM_Convert') is not null
drop table dbo.GL_UoM_Convert 
go

Create table GL_UoM_Convert
(
	Item	int not null identity(1,1) primary key,  
	HPN	varchar(18) not null,
	Basic_UoM CHAR(3)  not null,
	Basic_UoM_Qty numeric(18,5) null,
	Order_UoM CHAR(3) not null,
	Order_UoM_Qty    numeric(18,5)  null,
 	Rate 	   numeric(18,5) null,
	Expire_Dt  datetime not null default getdate(),
	Status   CHAR(1) not null default 'A',
	Created_By varchar(15) not null,
	Creation_Dt datetime not null default getdate(),
	Updated_By  varchar(30) not null,
	Update_Dt   datetime not null default getdate()
)
	
go	 

⌨️ 快捷键说明

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