Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个财务价格时间序列:
日期价格差异_3 2012 年 1 月 1 日 1,1 不适用 2012 年 2 月 1 日 1,2 不适用 2012 年 3 月 1 日 1,3 2012 年 4 月 1 日 1,3 2012 年 7 月 1 日 1,2 2012 年 8 月 1 日 1.3
我打算使用最后 3 个价格及时计算每个日期的差异。您是否看到了仅使用 SQL 来完成此任务的机会?
任何提示将不胜感激。
select var_pop(price) as variance from ( select price from YourTable order by date desc limit 3 ) as SubQueryAlias