postgresql去重,只取时间最新的一条数据【转】

2022/8/23 2:52:46

本文主要是介绍postgresql去重,只取时间最新的一条数据【转】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

昵称: zjyss

原文地址:https://www.cnblogs.com/zjyss/p/15701439.html

 

1.可以循环表取出相同字段的第一条去建立临时表或视图

2.使用pg的row_number 函数对相同字段记录分组排序,取出排序分组记录中的第一个。

下例即取出查询结果集合中产品对应date最新的那一条数据集合,相当于根据product_id去重,保留date最大的一条

select s.product_id, s.price
from (
    select *, row_number() over (partition by ttt.product_id order by ttt.date desc) as group_idx
    from (
         select distinct (kpol.product_id),kpol.price, sm.date from
            kthrp_purchase_order_line kpol
            left join stock_move sm on split_part(sm.ref, ',', 1) = 'kthrp.purchase.order.line' and split_part(sm.ref, ',', 2)::INTEGER = kpol.id
            left join product_product pp on pp.id = kpol.product_id
         where sm.date is not null
            order by sm.date desc
             ) ttt
) s
where s.group_idx = 1;

可以简化为:

select s.field_name_s, s.field_name_x
from (
    select *, row_number() over (partition by ttt.field_name_a order by ttt.field_name_b desc) as group_idx
    from 子查询 ttt
) s
where s.group_idx = 1;

1.row_number() 为返回的记录定义各行编号

2.pritition by 分组

3.order by 排序

 



这篇关于postgresql去重,只取时间最新的一条数据【转】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程