一次更新多行,每行具有不同的值
我有一张主桌。它的主键在其他表中用作外键。我无法修改其他表的定义,因为它没有任何“更新级联”,并且我想更改主键的值,以便我应该更新其他表... 目前我已经写了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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是在一条语句中更新多行的一种选项:
Here's one option to update multiple rows in one statement: