?? tb_gl_parameter_mstr.sql
字號(hào):
use qai
go
if object_id('dbo.GL_Parameter_Mstr') is not null
drop table dbo.GL_Parameter_Mstr
go
Create table GL_Parameter_Mstr
(
Param_Code CHAR(4) NOT NULL,
Param_Value int not null default 0,
Description varchar(120) not null,
Alt_nm varchar(120) null,
Active bit not null default 0,
valid datetime not null default getdate(),
Expiration_dt datetime not null default getdate()
)
go
insert into GL_Parameter_Mstr(Param_Code,Param_Value,Description,alt_nm,active,valid,expiration_dt)
values('P001',1,'Delivery Delay Alter','交貨延時(shí)提醒',1,getdate(),'2008-12-31')
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -