📄 tb_gl_uom_convert.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 + -