?? tb_gl_uom_mstr.sql
字號:
if object_id('dbo.GL_UoM_Mstr') is not null
drop table dbo.GL_UoM_Mstr
go
Create table GL_UoM_Mstr
(
Uom_cd char(3) not null constraint pk_uom_mstrx primary key,
Dim_cd varchar(15) null,
iso_cd varchar(15) null,
Description varchar(30) null,
Alt_nm varchar(30) null,
Lang_cd char(3) null default 'EN'
)
go
insert into GL_UoM_mstr(Uom_cd,iso_cd,description,alt_nm,lang_cd)
select distinct Uom_cd,iso_cd,description,alt_nm,'EN' from import_uom_upload
select uom_cd from import_uom_upload
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -