PostgreSQL - 创建一个使用两列中的数据来更新另一列的函数
我需要创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PostgreSQL 使用||用于字符串连接(连接)。因此您可以使用单个更新语句同时影响多行
PostgreSQL uses || for string concatenation (joining). So you can use a single update statement that will affect multiple rows at the same time
这将更新所有行中的第 3 列。
This will update column3 in all rows.