作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试使用 filter()
调用 percentile_const
中的条款我不确定我能做到这一点。有办法吗?这是示例查询:
select
count(*) as n1,
count(*) filter(where ha >= 0) as n2,
percentile_cont(.9) within group (order by es asc) as p1,
percentile_cont(.9) filter (where ha >= 0) within group (order by es asc) as p2
from mytable where mypid = 123;
p2
的情况下,查询工作正常当然打电话,但你可以看到我想做什么。
最佳答案
filter
需要去追 within group
部分:
select
count(*) as n1,
count(*) filter(where ha >= 0) as n2,
percentile_cont(.9) within group (order by es asc) as p1,
percentile_cont(.9) within group (order by es asc) filter (where ha >= 0) as p2
from mytable
where mypid = 123;
关于postgresql - postgres : Combining filter() with a percentile_cont(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53381325/
我是一名优秀的程序员,十分优秀!