📄 view_mis_gr_list_lh.sql
字号:
if object_id('dbo.View_MIS_GR_List_LH') is not null
drop view dbo.View_MIS_GR_List_LH
go
create view View_MIS_GR_List_LH
as
select a.Lot_No,a.dn_no,a.PONO,a.VendorID,b.Itemno as HPN,b.unit as UoM,b.depot as Warehouse,b.Rec_Qty as Rcv_Qty,b.fir_date as Creation_dt,b.fir_oper as Created_by
from stockmanage_LH..base_recdepot a,stockmanage_LH..base_recdepotc b
where a.add_id = b.single_id and b.che='Y'
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -