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

📄 tb_gl_uom_convert.sql

📁 工厂采购系统,DELPHI+SQL SERVER,三层技术
💻 SQL
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -