簡體   English   中英

MySQL window function 獲取該組狀態相同的兩個日期之間的差異

[英]MySQL window function get difference between two dates where status is same on that group

我想做的事:

查找最后收到的“awb”行。 獲取該行中的 current_status。 如果 current_status 是“PICKUP EXCEPTION”、“OUT FOR PICKUP”、“PICKUP RESCHEDULED”中的任何一個,則查找該特定“awb”中這些狀態第一次出現的行 檢查第一次出現和最后一次出現這些狀態之間的天數'awb' 的狀態和 output 的 'awbs' 相差超過 2 天。

我做了什么:

WITH ranked_order_status AS (
  SELECT os.*,  
  ROW_NUMBER() OVER (PARTITION BY awb ORDER BY STR_TO_DATE(recived_at,'%m/%d/%y %T') desc) AS occurance
  FROM order_status AS os 
),
filtered_last_occurance_in_list as (
 select * from ranked_order_status where occurance=1 and current_status in ('PICKUP EXCEPTION', 'OUT FOR PICKUP', 'PICKUP RESCHEDULED')
),
all_awb_with_last_status_in_list as 
(
 select * from order_status os2  where awb in (select awb from filtered_last_occurance_in_list) order by awb
)
select id, recived_at, awb,current_status from all_awb_with_last_status_in_list

當前 Output:

id  |recived_at   |awb           |current_status    |
----|-------------|--------------|------------------|
2413|5/7/21 6:13  | 1091108643160|OUT FOR PICKUP    |
2414|5/7/21 6:14  | 1091108643160|OUT FOR PICKUP    |
2501|5/7/21 10:55 | 1091108643160|PICKUP EXCEPTION  |
2503|5/7/21 11:13 | 1091108643160|PICKUP EXCEPTION  |
1337|4/30/21 7:44 |14325421720410|OUT FOR PICKUP    |
1399|4/30/21 17:39|14325421720410|PICKUP EXCEPTION  |
1476|5/1/21 6:09  |14325421720410|PICKUP RESCHEDULED|
1500|5/1/21 11:09 |14325421720410|PICKUP EXCEPTION  |
  77|4/22/21 7:18 |19041127718646|OUT FOR PICKUP    |
 121|4/22/21 11:17|19041127718646|PICKUP EXCEPTION  |
  81|4/22/21 7:18 |19041128001310|OUT FOR PICKUP    |
 124|4/22/21 11:18|19041128001310|PICKUP EXCEPTION  |
  83|4/22/21 7:18 |19041128018585|OUT FOR PICKUP    |
 125|4/22/21 11:18|19041128018585|PICKUP EXCEPTION  |
 979|4/27/21 12:19|19041129734005|PICKUP EXCEPTION  |
1334|4/30/21 6:48 |19041130453211|OUT FOR PICKUP    |
1372|4/30/21 11:19|19041130453211|PICKUP EXCEPTION  |
1534|5/1/21 18:47 |19041130453211|PICKUP EXCEPTION  |
1483|5/1/21 7:18  |19041130642631|OUT FOR PICKUP    |
1490|5/1/21 8:18  |19041130642631|PICKUP EXCEPTION  |
1688|5/3/21 10:47 |19041130642631|PICKUP EXCEPTION  |

預期結果:假設 awb = 1091108643160,我需要使用 (5/7/21 11:13 - 5/7/21 10:55) = 18m 創建一個名稱為 delay 的新列

 id   recived_at      awb           current_status 
2413|5/7/21 6:13  | 1091108643160|OUT FOR PICKUP    |
2414|5/7/21 6:14  | 1091108643160|OUT FOR PICKUP    |
2501|5/7/21 10:55 | 1091108643160|PICKUP EXCEPTION  | -> this is first occurrence of same status
2503|5/7/21 11:13 | 1091108643160|PICKUP EXCEPTION  | -> this is last row

計算 awb 的最后一行和第一次出現的日期之間的差異(狀態和 awb)

WITH cte AS ( SELECT DISTINCT
                     awb, 
                     FIRST_VALUE(current_status) OVER (PARTITION BY awb ORDER BY date DESC) current_status
              FROM source )
SELECT awb, DATEDIFF(MAX(date), MIN(date))
FROM source
JOIN cte USING (awb, current_status)
GROUP BY awb

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM