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.
我想在日常基础上将平面文件数据加载到 SQL 表中。但我的表保存了 1 周的数据。7 天后,以前的数据将从我的表中删除,新数据将追加。
谢谢
before/after you run the import, delete any data that is more than 6 days old
你的平面文件是分隔的吗?逗号?标签?有多少个领域?它们是什么类型的?
如果您在任何时候都只希望表中包含一周的数据,则需要在执行每日导入后删除。如果您每天导入但每周只删除一次,则表中将有近两周的数据。
你已经尝试过什么?