SQL 会计日期、平面文件、痛苦
使用 sqlite3、python
我有一个蹩脚的遗留文件legacy_sales:
item | year | week | mon | tue | wed | thu | fri | sat |sun
4444 2011 29 10 0 4 15 18 25 30
我有一个很棒的新文件sales(这是上面“mon”条目的示例):
item | units | date
4444 10 2011-03-14
我在另一个表中有会计年度的开始日期 fiscal
year | start_date
2011 2010-08-30
有了这些信息,实现这一目标的最佳和最有效的方法是什么:
insert into sales from (insert magic here)
不使用任何 UDF...
有这样的胡言乱语的经验吗?
Using sqlite3, python
I have a crappy legacy file legacy_sales:
item | year | week | mon | tue | wed | thu | fri | sat |sun
4444 2011 29 10 0 4 15 18 25 30
And I have an awesome new file sales (this is an example of the 'mon' entry from above):
item | units | date
4444 10 2011-03-14
I have the start date of fiscal years in another table fiscal
year | start_date
2011 2010-08-30
With this information what is the best and most efficient way to accomplish this:
insert into sales from (insert magic here)
without using any UDFs...
Any experience with such drivel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从:legacy_sales 转换
为:sales
需要用英语 python 编写:
converting from: legacy_sales
to: sales
with needs this about in English python: