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去重,只取时间最新的一条数据【转】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-01-05快速清空 PostgreSQL 数据库中的所有表格,让你的数据库重新焕然一新!
- 2024-01-04在PostgreSQL中创建角色:判断角色是否存在并创建
- 2023-05-16PostgreSQL一站式插件推荐 -- pg_enterprise_views
- 2022-11-22PostgreSQL 实时位置跟踪
- 2022-11-22如何将PostgreSQL插件移植到openGauss
- 2022-11-11PostgreSQL:修改数据库用户的密码
- 2022-11-06Windows 环境搭建 PostgreSQL 物理复制高可用架构数据库服务
- 2022-10-27Windows 环境搭建 PostgreSQL 逻辑复制高可用架构数据库服务
- 2022-10-11PostgreSql安装(Windows10版本)
- 2022-09-13PostgreSQL-Network Address类型操作和函数