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

📄 tb_gl_stduom_convert.sql

📁 工厂采购系统,DELPHI+SQL SERVER,三层技术
💻 SQL
字号:


if object_id('dbo.GL_STDUoM_Convert') is not null
drop table dbo.GL_STDUoM_Convert
go

create table GL_STDUoM_Convert
(
 UoM_cd   CHAR(3) not null constraint fk_gl_uom_cvt references GL_UOM_Mstr(UoM_cd),
 Target_UoM  CHAR(3) not null,
 Molecule numeric(18,8) not null default 1.0000000,
 Denominator numeric(18,8) not null default 1.0000000,
 Formula    varchar(120) null,
 Rate       numeric(18,8) null default 1.000000
)
go

⌨️ 快捷键说明

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