使用PostgreSQL中的查询结果更新列
栏目: 数据库 · PostgreSQL · 发布时间: 5年前
内容简介:翻译自:https://stackoverflow.com/questions/13767908/updating-a-column-with-the-results-of-a-query-in-postgresql
我在PostgreSQL 9.2中有下表,其中包含时间戳:
gid [PK](bigserial),timestamp_mes(没有时区的时间戳),time_diff(interval)
1,2012-01-23 11:03:40,空的
2,2012-01-23 11:03:42,空的
3,2012-01-23 11:03:44,空的
我添加了一个间隔列(time_diff),并希望用此查询产生的时差值填充它:
SELECT timestamp_mes - lag(timestamp_mes, 1) over (order by timestamp_mes) as diff from gc_entretien.trace order by timestamp_mes
我尝试了以下查询来更新time_diff列,但没有成功:
UPDATE gc_entretien.trace set time_diff = (SELECT trace.timestamp_mes - lag(trace.timestamp_mes, 1) over (order by trace.timestamp_mes) from gc_entretien.trace order by timestamp_mes);
这会导致错误:
ERROR: more than one row returned by a subquery used as an expression
我应该如何使用时差查询生成的值更新time_diff列?
with new_values as ( SELECT gid, timestamp_mes - lag(timestamp_mes, 1) over (order by timestamp_mes) as diff from gc_entretien.trace ) update gc_entretien.trace as tr set time_diff = nv.diff from new_values nv where nv.gid = tr.gid;
翻译自:https://stackoverflow.com/questions/13767908/updating-a-column-with-the-results-of-a-query-in-postgresql
以上所述就是小编给大家介绍的《使用PostgreSQL中的查询结果更新列》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 在OQL上使用UPDLOCK锁定查询结果,安全的更新实体数据
- SQL Server 更新统计信息出现严重错误,应放弃任何可能产生的结果
- 使用RMarkdown沟通结果
- webpack打包结果依赖分析
- MySQL 不显示输出结果
- 从前序与中序遍历结果构造二叉树 (105):从前序与中序遍历结果构造二叉树
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Linux程序设计
马修 / 陈健 / 人民邮电出版社 / 2007-7 / 89.00元
《Linux 程序设计(第3版)》讲述在Linux系统及其他UNIX风格的操作系统上进行的程序开发,主要内容包括标准Linux C语言函数库和由不同的Linux或UNIX标准指定的各种工具的使用方法,大多数标准Linux开发工具的使用方法,通过DBM和MySQL数据库系统对Linux中的数据进行存储,为X视窗系统建立图形化用户界面等。《Linux 程序设计(第3版)》通过先介绍程序设计理论,再以适......一起来看看 《Linux程序设计》 这本书的介绍吧!