根据匹配ID的时间戳获取上一个行值

发布于 2025-01-19 12:04:11 字数 1236 浏览 0 评论 0原文

我有一张有关运输的表,其中有有关到达(国家和日期)到港口的信息。现在,我需要提取它不使用上一行条目的国家。该桌子看起来像这个

ID乡村行动数据元素
11-1-2022
2US1-1-2022
1NL2-1-2022
2IT4-1-2022
1PT5-1-2022

我想获得出发每个ID基于先前到达的情况,因此看起来像这个

IDCountryArarivalDateArivalDewarturePort
1BE1-1-2022NULL
2US1-1-2022NULL
1NL2-1-2022BE
2IT4-1-2022US
1 US 1PT5-1-2022NL

我只能基于DateArival获得以前的国家 /地区以下情况:

select 
 pc.*,
    lag(pc.CountryArrival) over (order by DateArrival) as DeparturePort
from shipping pc
where pc.DateArrival is not null;

任何想法如何获得匹配ID的先前到达?

I have a table about shipping that has information about the arrival (country and date) to a port. Now I need to extract the country where it departed from using the previous row entries. The table looks like this

IDCountryArrivalDateArrival
1BE1-1-2022
2US1-1-2022
1NL2-1-2022
2IT4-1-2022
1PT5-1-2022

I want to obtain the departure for each ID based on the previous ArrivalDate so it would look like this

IDCountryArrivalDateArrivalDeparturePort
1BE1-1-2022NULL
2US1-1-2022NULL
1NL2-1-2022BE
2IT4-1-2022US
1PT5-1-2022NL

I can obtain the previous Country based only on DateArrival with:

select 
 pc.*,
    lag(pc.CountryArrival) over (order by DateArrival) as DeparturePort
from shipping pc
where pc.DateArrival is not null;

Any idea how to get the previous arrival for matching IDs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十六岁半 2025-01-26 12:04:11

您需要通过 <代码> ID列进行分区。

 lag(pc.CountryArrival) over (PARTITION BY ID order by DateArrival) as DeparturePort

You need to PARTITION BY the ID column.

 lag(pc.CountryArrival) over (PARTITION BY ID order by DateArrival) as DeparturePort
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文