Postgres:将列中的所有值更新为一?

发布于 2024-09-30 14:34:40 字数 126 浏览 2 评论 0原文

有办法做到这一点吗?我想下面的方法是行不通的。

UPDATE table SET column = column + 1 ...

除了编写函数或使用 PHP 之外,还有其他方法可以通过查询来执行此操作吗?

Is there a way to do this? I imagine the following will not work.

UPDATE table SET column = column + 1 ...

Other than writing a function or using PHP, is there a way to do this with a query?

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

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

发布评论

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

评论(2

北风几吹夏 2024-10-07 14:34:40

你尝试过吗?它应该可以正常工作。

Did you try it? It should just work.

因为看清所以看轻 2024-10-07 14:34:40

它会起作用:

# psql -U postgres
psql (9.0.1)
Type "help" for help.

postgres=# create database test;
CREATE DATABASE
postgres=# \c test
You are now connected to database "test".
test=# create table test (test integer);
CREATE TABLE
test=# insert into test values (1);
INSERT 0 1
test=# insert into test values (2);
INSERT 0 1
test=# select * from test;
 test 
------
    1
    2
(2 rows)

test=# update test set test = test + 1;
UPDATE 2
test=# select * from test;
 test 
------
    2
    3
(2 rows)

It'll just work:

# psql -U postgres
psql (9.0.1)
Type "help" for help.

postgres=# create database test;
CREATE DATABASE
postgres=# \c test
You are now connected to database "test".
test=# create table test (test integer);
CREATE TABLE
test=# insert into test values (1);
INSERT 0 1
test=# insert into test values (2);
INSERT 0 1
test=# select * from test;
 test 
------
    1
    2
(2 rows)

test=# update test set test = test + 1;
UPDATE 2
test=# select * from test;
 test 
------
    2
    3
(2 rows)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文