如何使用两台服务器更新 postgresql 中的列?

发布于 2024-11-03 02:57:39 字数 55 浏览 0 评论 0原文

我有一个包含许多字段的本地表。我需要仅更新一列的不同服务器(相同数据库结构)上的值。我该怎么做?

I have a local table with many fields. I need to update the values on a different server(same db structure) just for one column. How can I do this ?

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

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

发布评论

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

评论(2

小伙你站住 2024-11-10 02:57:39

你尝试过dblink吗?

SELECT INTO AFFECTED_ROW_COUNT_STRING 
DBLINK_EXEC('host=localhost  port=5432 dbname=DBNAME user=USERNAME password=PASSWORD', 
'UPDATE TABLE SET COLUMN = VALUE ');

have yout tried dblink?

SELECT INTO AFFECTED_ROW_COUNT_STRING 
DBLINK_EXEC('host=localhost  port=5432 dbname=DBNAME user=USERNAME password=PASSWORD', 
'UPDATE TABLE SET COLUMN = VALUE ');
∞梦里开花 2024-11-10 02:57:39

我能想到的唯一方法是返回结果中更改的列并在两台服务器上应用更改。

create table test123 {
    id serial primary key,
    myvalue int4
};

假设两台服务器上的两个表中都有从 1 到 100 的行。该语句更新您的行,并使用您也可以在其他服务器上执行的更新语句生成单个字符串结果。

update test123 set myvalue = rand() 
returning 'UPDATE test123 SET myvalue='||test123||' WHERE id='||id||';';

PS:未经测试,但应该可以与较小的语法修复一起使用。

The only way I can think of is to return the changed column in the results and to apply the changes on both servers.

create table test123 {
    id serial primary key,
    myvalue int4
};

Assume, you have rows from 1 to 100 in both tables on both servers. This statement updates your rows, and produces a single string result with update statements you can do on the other server also.

update test123 set myvalue = rand() 
returning 'UPDATE test123 SET myvalue='||test123||' WHERE id='||id||';';

PS: Untested, but should work with minor syntax fixes.

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