📄 viw_gl_price_history.sql
字号:
if object_id('dbo.GL_Price_history') is not null
drop view dbo.GL_Price_history
go
create view GL_Price_history
as
select (select count(*) from viw_Price_History where hpn = a.hpn and unit_Price<=a.Unit_Price) as Item,
a.hpn,a.unit_Price,a.Currency,a.Creation_dt,a.Modify_dt
from viw_Price_History a
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -