用于更新表值的 SQL 导入文件

发布于 2024-10-18 11:00:53 字数 106 浏览 1 评论 0原文

如何将 csv 文件导入 SQLite 或 Postgresql 数据库,以便更新表中已有的值,当然也插入新值。

谢谢...

PD:我喜欢这个社区。快速准确的答案。

How do I import an csv file to a database either SQLite or Postgresql so that it updates values already in the table and of course also inserts new ones.

Thank you...

PD: Im loving this community. Fast Accurate answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单调的奢华 2024-10-25 11:00:53

我对 sqlite 不太熟悉,不知道是否有相同的构造,但您也询问了 Postgres。所以...对于 Postgres,我会使用 COPY FROM命令将数据导入临时表。然后我会运行以下 SQL:

UPDATE destination d
SET [whatever you are updating]
FROM staging s
WHERE d.id = s.id

INSERT INTO destination
SELECT * FROM staging s
WHERE s.id NOT IN (
  SELECT id FROM destination
)

I'm not familiar enough with sqlite to know if the same constructs are available, but you also asked about Postgres. So... with Postgres, I would use the COPY FROM command to import the data to a staging table. Then I would run the following SQL:

UPDATE destination d
SET [whatever you are updating]
FROM staging s
WHERE d.id = s.id

INSERT INTO destination
SELECT * FROM staging s
WHERE s.id NOT IN (
  SELECT id FROM destination
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文