【数据库】pgsql窗口函数,分组求sum的方式


select distinct
    quantity,
    standard_cost,
    sum(a.quantity*a.standard_cost) over(partition by purchase_scence_code,raw_material_code) amount,
     coalesce(purchase_scence_code,’unknown’) as purchase_scence_code,
    coalesce(raw_material_code,’unknown’) as raw_material_code
from ap.fact_outbound_order as a 
where
    a.material_type_code=’3′
    and
    quantity<0

 

select
        purchase_scence_code,
        sum(amount)
from (
        select distinct
                quantity,
                standard_cost,
                sum(a.quantity*a.standard_cost) over(partition by purchase_scence_code,raw_material_code) amount,
                coalesce(purchase_scence_code,’unknown’) as purchase_scence_code,
                coalesce(raw_material_code,’unknown’) as raw_material_code
        from ap.fact_outbound_order as a 
        where a.material_type_code=’3′
) t1
group by t1.purchase_scence_code

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282319.html

(0)
上一篇 2022年8月26日
下一篇 2022年8月26日

相关推荐

发表回复

登录后才能评论