📄 viw_price_history.sql
字号:
if object_id('dbo.viw_Price_History') is not null
drop view dbo.viw_Price_History
go
create view viw_Price_History
as
select hpn,unitprice as Unit_Price ,curunit as Currency,max(created_dt) as Creation_dt,max(last_upd_dt) as Modify_dt
from ord_item where isnull(hpn,'')<>''
group by hpn,unitprice,curunit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -