📄 tb_gl_job_mstr.sql
字号:
if object_id('dbo.GL_Job_Mstr') is not null
drop table dbo.GL_JOB_Mstr
go
Create table GL_JOB_Mstr
(
JOB_ID int not null identity(100,1) primary key,
JOB_Title varchar(120) not null,
context Varchar(800) not null,
Sender varchar(15) not null,
Received varchar(15) not null,
creation_dt datetime not null default getdate(),
Status CHAR(1) NOT NULL,
Req_Reply bit not null default 0
)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -