📄 view_vendor_selection.sql
字号:
if object_id('dbo.view_Vendor_Selection') is not null
drop view dbo.view_Vendor_Selection
go
create view view_Vendor_Selection
as
select a.vendor_id,b.vendor_nm,a.hpn,a.cpn,a.mpn,a.description,a.Unit_Price,a.Currency,a.basic_uom,a.vendor_uom,a.lead_time from po_information_Record a,po_vendor_mstr b
where a.vendor_id = b.vendor_id
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -