作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个 guaccountid
具有 3 个不同的 guorderid
值和不同的 enddate
。我只需要获取特定 guaccountid
的最新 enddate
的 guorderid
。
select guaccountid,guorderid,enddate
from ord_entitlement
where guaccountid ='15031021282118408'
ORDER BY enddate DESC
最佳答案
我会使用 row_number()
窗口函数:
SELECT
guaccountid,
guorderid,
enddate
FROM (
SELECT
guaccountid,
guorderid,
enddate,
row_number() over (
partition by guaccountid
order by to_timestamp(enddate, 'YYYY-MM-DD"T"HH24:MI:SS') desc
) r
FROM ord_entitlement
WHERE guaccountid = '15031021282118408'
AND substr(enddate, 1, 4) != '9999'
) src
WHERE r = 1;
这将返回:
| guaccountid | guorderid | enddate |
|-------------------|-------------------|--------------------|
| 15031021282118408 | 15031708485830901 | 2015-04-16T08:42:1 |
如果您从 where
子句中删除 guaccountid = '15031021282118408'
,您将获得任何 guaccountid
的最新记录。
关于postgresql - 如何在 postgreSQL 中获取最近的日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31854134/
我是一名优秀的程序员,十分优秀!