PostgreSQL - 创建一个使用两列中的数据来更新另一列的函数

发布于 2024-10-12 17:47:34 字数 219 浏览 2 评论 0原文

我需要创建一个 PostgreSQL 函数,它将使用两列(“column1”和“column2”)中的值来更新“column3”中的数据。

“column1”和“column2”中的数据已存在。我只需要使用这两列中包含的数据(带有某种循环)来更新“column3”(如“column1”空间“column2”)。

所有列都是同一个表的一部分,并且它们是 VARCHAR。任何帮助将不胜感激。

I need to create a PostgreSQL function that will use the values from two columns - "column1" and "column2" - to update data in "column3".

The data in "column1" and "column2" already exists. I just need to use the data included in those two columns (with some kind of loop) to update "column3" (like "column1" space "column2").

All columns are part of the same table and they are VARCHAR. Any help would be greatly appreciated.

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

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

发布评论

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

评论(2

慈悲佛祖 2024-10-19 17:47:34

PostgreSQL 使用||用于字符串连接(连接)。因此您可以使用单个更新语句同时影响多行

update tbl
set column3 = column1 || ' ' || column2
where ... (optional clause to identify records to update)

PostgreSQL uses || for string concatenation (joining). So you can use a single update statement that will affect multiple rows at the same time

update tbl
set column3 = column1 || ' ' || column2
where ... (optional clause to identify records to update)
貪欢 2024-10-19 17:47:34

这将更新所有行中的第 3 列。

update your_table
set column3 = column1 || ' ' || column2

This will update column3 in all rows.

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