如何将 CSV 文件中的记录追加到 Sqlite 表中?
我收到了多个 CSV 文件的更新版本,并在末尾附加了新行。
我希望导入命令仅附加表中尚未存在的记录。
谢谢
I receive several updated versions of CSV files with new lines appended at the end.
I want that the Import command only appends the records that are not in the table yet.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以使用 INSERT OR IGNORE INTO 语法?
例如:将 CSV 导入临时表,然后将所有非重复行复制到最终表中。当然,您需要确保现有行违反某种 UNIQUE 约束。
Maybe you can use the INSERT OR IGNORE INTO syntax?
Like: import your CSV into a temp table, and copy over all non-duplicate rows into your final table. Of course, you would need to make sure that the existing rows violate some kind of UNIQUE constraint.