加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

postgresql – 带有postgres窗口函数的重复行

发布时间:2020-12-13 18:05:37 所属栏目:百科 来源:网络整理
导读:postgres文档( http://www.postgresql.org/docs/9.1/static/tutorial-window.html)讨论了窗口函数. 在他们的例子中: SELECT salary,sum(salary) OVER (ORDER BY salary) FROM empsalary; 重复处理如下: salary | sum --------+------- 3500 | 3500 3900 |
postgres文档( http://www.postgresql.org/docs/9.1/static/tutorial-window.html)讨论了窗口函数.

在他们的例子中:

SELECT salary,sum(salary) OVER (ORDER BY salary) FROM empsalary;

重复处理如下:

salary |  sum  
--------+-------
   3500 |  3500
   3900 |  7400
   4200 | 11600
   4500 | 16100
   4800 | 25700 <-- notice duplicate rows have the same value
   4800 | 25700 <-- SAME AS ABOVE
   5000 | 30700
   5200 | 41100 <-- same as next line
   5200 | 41100 <--
   6000 | 47100
(10 rows)

你如何做同样的事情,以便重复的行没有给出相同的值?换句话说,我希望这个表看起来如下:

salary |  sum  
--------+-------
   3500 |  3500
   3900 |  7400
   4200 | 11600
   4500 | 16100
   4800 | 20900 <-- not the same as the next line
   4800 | 25700 <-- 
   5000 | 30700
   5200 | 35900 <-- not the same as the next line
   5200 | 41100 <--
   6000 | 47100
(10 rows)
使用frame子句中的行而不是默认范围
select
    salary,sum(salary) over (
        order by salary
        rows unbounded preceding
    )
from empsalary
;
 salary |  sum  
--------+-------
   3500 |  3500
   3900 |  7400
   4200 | 11600
   4500 | 16100
   4800 | 20900
   4800 | 25700
   5000 | 30700
   5200 | 35900
   5200 | 41100
   6000 | 47100

http://www.postgresql.org/docs/current/static/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读