select
Date, [Close],
avg([close]) over (order by date asc rows 4 preceding) as MA10
from
dbo.APPL
此查询返回股票价格的滚动 4 天平均值。但是,我想显示的值NULL
好像前几天小于 4。
如何在 SQL Server 中进行调整?
select
Date, [Close],
avg([close]) over (order by date asc rows 4 preceding) as MA10
from
dbo.APPL
此查询返回股票价格的滚动 4 天平均值。但是,我想显示的值NULL
好像前几天小于 4。
如何在 SQL Server 中进行调整?