簡體   English   中英

postgres修改表並插入行概率

[英]postgres alter table and insert row probabilities

我想對具有相同id1的行的權重求和,然后計算列概率中該行的每一行的比率(有點像概率)。

表格數據:

id1 weight  id2 
1   0.1    3   
1   0.2    4   
1   0.3    5   
1   0.8    6   
2   0.5     7    
2   0.6     8    
2   0.7     9    

輸出應為:

id1 weight  id2 prob 
1   0.1    3    0.07
1   0.2    4   0.1429
1   0.3    5   0.214
1   0.8    6   0.5714
2   0.5     7    0.2778 
2   0.6     8    0.3333
2   0.7     9    0.3388

可以通過窗口函數輕松解決此問題,該函數通常比使用子查詢或派生表的任何解決方案都要快:

select id1, 
       weight, 
       id2, 
       weight / sum(weight) over (partition by id1) as prob
from items
order by id1, id2;

SQLFiddle示例: http ://sqlfiddle.com/#!15/64453/1

嘗試這個

SELECT t.*,t.wieght/t1.Weight AS Prob FROM TABLE_NAME t INNER JOIN 
(
SELECT id1,SUM(weight) AS Weight FROM TABLE_NAME GROUP BY id1
)t1 ON t.id = t1.id

使用相關的子選擇對ID的所有權重求和:

select id1, weight, id2,
       weight / (select sum(weight) from table t2 where t2.id = t1.id) as prob
from table t1

嘗試;

select 
    t.id1, t.weight, t.id2, (t.weight/t1.tot) prob
from tbl t
join (
    select id1, sum(weight) tot
    from tbl
    group by id1
) t1
on t.id1 = t1.id1

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM