tb_gl_currency_mstr.sql

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

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

Create table GL_Currency_Mstr
(
Currency	CHAR(3) not null constraint pk_gl_currency  primary key,
Description    varchar(30) null,
lang		CHAR(3) null default 'ENG',
Rate numeric(18,8) not null default 0.000000,
Active  bit not null default 0
)

go



⌨️ 快捷键说明

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