Postgres:将列中的所有值更新为一?
有办法做到这一点吗?我想下面的方法是行不通的。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过吗?它应该可以正常工作。
Did you try it? It should just work.
它会起作用:
It'll just work: