PostgreSQL计算行之间的差异

前端之家收集整理的这篇文章主要介绍了PostgreSQL计算行之间的差异前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用查询来计算字段中的行之间的差异:
Illustrations:
input:year,month,fixes
output:increase

     year | month | fixes    | increase
    ------+-------+----------+-----------
     2006 | 04    |       1  | 0
     2006 | 05    |       4  | 3
     2006 | 06    |       3  | -1

将列增加为固定中相邻行之间的差值作为输出.

这是什么窗口功能是:
select year,fixes,fixes - lag(fixes) over (order by year,month) as increase,from the_table;

有关详细信息,请参阅手册:
http://www.postgresql.org/docs/current/static/tutorial-window.html

原文链接:https://www.f2er.com/postgresql/191773.html

猜你在找的Postgre SQL相关文章