一次更新多行,每行具有不同的值

发布于 2024-11-24 03:08:42 字数 159 浏览 0 评论 0原文

我有一张主桌。它的主键在其他表中用作外键。我无法修改其他表的定义,因为它没有任何“更新级联”,并且我想更改主键的值,以便我应该更新其他表... 目前我已经写了plpgsql, 但由于我有大量数据需要处理,不知何故它降低了性能。 有人可以帮助我,如何在单个查询中更新多个表,或者当然使用不同的值更新多行?

I have one master table. its primary key is used as foreign key in other tables. I can not modify the definition of the other tables as it does not have any "on update cascade" and i want to change the primary key's value so the other tables i should update...
currently i have written the plpgsql,
but as I have large amount of data to process, somehow it is slowing down the performance.
Can someone help me, how to update multiple table in single query, or updating multiple rows of-course with different values?

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

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

发布评论

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

评论(1

薄凉少年不暖心 2024-12-01 03:08:42

以下是在一条语句中更新多行的一种选项:

update mytable set
mycolumn = (case myid when 1 then 'a' when 2 then 'b' ... end)
where myid in (1, 2, ...);

Here's one option to update multiple rows in one statement:

update mytable set
mycolumn = (case myid when 1 then 'a' when 2 then 'b' ... end)
where myid in (1, 2, ...);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文