SQL Server 插入缺失行
我有下表记录每天的值。问题是有时会缺少几天。我想编写一个 SQL 查询,它将:
- 返回缺失的天数
- 使用线性插值计算缺失的值
因此,根据以下源表:
Date Value
--------------------
2010/01/10 10
2010/01/11 15
2010/01/13 25
2010/01/16 40
我想返回:
Date Value
--------------------
2010/01/10 10
2010/01/11 15
2010/01/12 20
2010/01/13 25
2010/01/14 30
2010/01/15 35
2010/01/16 40
任何帮助将不胜感激。
I have the following table which records a value per day. The problem is that sometimes days are missing. I want to write a SQL query that will:
- Return the missing days
- Calculate the missing value using linear interpolation
So from the following source table:
Date Value
--------------------
2010/01/10 10
2010/01/11 15
2010/01/13 25
2010/01/16 40
I want to return:
Date Value
--------------------
2010/01/10 10
2010/01/11 15
2010/01/12 20
2010/01/13 25
2010/01/14 30
2010/01/15 35
2010/01/16 40
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)