📄 tb_gl_currency_mstr.sql
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -