将值插入 PostgreSQL 中的列

发布于 2024-09-09 07:45:41 字数 82 浏览 2 评论 0原文

我想弄清楚如何将相同的值插入到表的整个列中?该表已经存在,并且我有一个空列,我想在其中插入某个值,例如今天的日期。我只找到解释如何将值插入整行的来源。

I am trying to figure out how to insert the same value into the entire column of a table? The table already exists and I have an empty column into which I would like to insert a certain value, for example, today's date. I have only found sources explaining how to insert values into an entire row.

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

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

发布评论

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

评论(3

左岸枫 2024-09-16 07:45:41
UPDATE myTable SET myColumn='newValue'

newValue 也可以是一个表达式。

请参阅http://www.postgresql.org/docs/current/static/ sql-update.html

UPDATE myTable SET myColumn='newValue'

newValue can also be an expression.

see http://www.postgresql.org/docs/current/static/sql-update.html

缱绻入梦 2024-09-16 07:45:41

我认为我们需要更多信息来理解这个问题,听起来你只是想...

INSERT INTO table_foo (my_empty_column_name) values (current_date);

如果你已经在那里获得了数据并且你想更新所有行的该列那么...

UPDATE table_foo SET my_empty_column_name = current_date;

I think we need a bit more info to understand the issue, it sounds like you just want...

INSERT INTO table_foo (my_empty_column_name) values (current_date);

If you've already got data there and you want to UPDATE that column for all rows then...

UPDATE table_foo SET my_empty_column_name = current_date;
乜一 2024-09-16 07:45:41

我认为您正在尝试更新。

UPDATE myTable set myColumn = 'WHATEVER'

I would think you're trying to UPDATE.

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