簡體   English   中英

MySQL timediff在表中選定記錄的一列上

[英]MySQL timediff on one column for selected records in table

基本上我想做的是基於SIP信令獲取呼叫持續時間。

我有一個帶有記錄的表,如下所示,並且我正在嘗試編寫一條返回以下內容的SELECT語句:

id  callid  date                    micro_ts            method  duration1   duration2
------------------------------------------------------------------------------------
25  123     2016-04-05 00:00:25     1459814425000320    BYE     00:00:04    3.999876
46  234     2016-04-05 00:01:25     1459814485000000    BYE     00:00:04    4.000000

該ID來自給定CallID的第一個BYE。 每個單獨的呼叫的CallID始終相同。 00:00:04應該是date之間的差異,而3.999876應該是micro_ts之間的差異

SQL應該為每個callid返回一條記錄。 這里最棘手的部分是,我試圖獲得指示呼叫開始/停止的消息之間的區別。

我希望它返回基於“第一個方法=在方法= 183之后直到第一個BYE的200 =”或“第一個方法=在方法= 180之后= 200且直到第一個BYE都沒有找到方法= 183”的持續時間。

如何合並這些條件以返回包含多個調用的表的所需內容?

我一直在嘗試這樣寫SQL:

select * from (
select id, callid, micro_ts, method, min(date) as StartTime, max(date) as EndTime,
timediff(max(date), min(date)) as duration
from (select t.*,
             (select count(*)
              from tableA t2
              where t2.date <= t.date and
                    t2.method = 'BYE'
             ) as grp
      from tableA t
     ) t where t.method = '200'
group by callid, method
order by 3 desc) z;

我認為,在所有呼叫只有200次再再加上BYE的前提下,此方法有效。

id  callid  date                    micro_ts            method
---------------------------------------------------------------
1   123     2016-04-05 00:00:01     1459814401000025    INVITE
2   123     2016-04-05 00:00:02     1459814402000123    407
3   123     2016-04-05 00:00:03     1459814403000941    INVITE
4   123     2016-04-05 00:00:04     1459814404000392    INVITE
5   123     2016-04-05 00:00:05     1459814405000539    INVITE
6   123     2016-04-05 00:00:06     1459814406000101    404
7   123     2016-04-05 00:00:07     1459814407000007    INVITE
8   123     2016-04-05 00:00:08     1459814408000948    404
9   123     2016-04-05 00:00:09     1459814409000784    100
10  123     2016-04-05 00:00:10     1459814410000192    183
11  123     2016-04-05 00:00:11     1459814411000482    183
12  123     2016-04-05 00:00:12     1459814412000561    183
13  123     2016-04-05 00:00:13     1459814413000392    183
14  123     2016-04-05 00:00:14     1459814414000751    180
15  123     2016-04-05 00:00:15     1459814415000012    180
16  123     2016-04-05 00:00:16     1459814416000384    180
17  123     2016-04-05 00:00:17     1459814417000498    180
18  123     2016-04-05 00:00:18     1459814418000533    183
19  123     2016-04-05 00:00:19     1459814419000841    183
20  123     2016-04-05 00:00:20     1459814420000492    183
21  123     2016-04-05 00:00:21     1459814421000444    200         * FIRST 200 after 183
22  123     2016-04-05 00:00:22     1459814422000901    200         |
23  123     2016-04-05 00:00:23     1459814423000294    ACK         |
24  123     2016-04-05 00:00:24     1459814424000732    ACK         |
25  123     2016-04-05 00:00:25     1459814425000320    BYE         * FIRST BYE
26  123     2016-04-05 00:00:26     1459814426000020    BYE
27  123     2016-04-05 00:00:27     1459814427000391    200
28  123     2016-04-05 00:00:28     1459814428000123    200
29  234     2016-04-05 00:01:01     1459814461000000    INVITE
30  234     2016-04-05 00:01:02     1459814462000000    407
31  234     2016-04-05 00:01:03     1459814463000000    INVITE
32  234     2016-04-05 00:01:04     1459814464000000    INVITE
33  234     2016-04-05 00:01:05     1459814465000000    INVITE
34  234     2016-04-05 00:01:06     1459814466000000    404
35  234     2016-04-05 00:01:07     1459814467000000    INVITE
36  234     2016-04-05 00:01:08     1459814468000000    404
37  234     2016-04-05 00:01:09     1459814469000000    100
38  234     2016-04-05 00:01:10     1459814470000000    183
39  234     2016-04-05 00:01:11     1459814471000000    183
40  234     2016-04-05 00:01:12     1459814472000000    183
41  234     2016-04-05 00:01:13     1459814473000000    183
42  234     2016-04-05 00:01:14     1459814474000000    180
43  234     2016-04-05 00:01:15     1459814475000000    180
44  234     2016-04-05 00:01:16     1459814476000000    180
45  234     2016-04-05 00:01:17     1459814477000000    180
46  234     2016-04-05 00:01:21     1459814481000000    200         * FIRST 200 after 180 whern no 183 is present
47  234     2016-04-05 00:01:22     1459814482000000    200         |
48  234     2016-04-05 00:01:23     1459814483000000    ACK         |
49  234     2016-04-05 00:01:24     1459814484000000    ACK         |
50  234     2016-04-05 00:01:25     1459814485000000    BYE         * FIRST BYE
51  234     2016-04-05 00:01:26     1459814486000000    BYE
52  234     2016-04-05 00:01:27     1459814487000000    200
53  234     2016-04-05 00:01:28     1459814488000000    200

我已經嘗試了一下,CASE表達式可能存在一些轉換問題,但這應該可以幫助您實現大部分目標:

SELECT id,
      callid
      start_date,
      start_ms,
      end_date,
      end_ms,
      end_date - start_date AS duration1,
      end_ms - start_ms AS duration2
 FROM (
   SELECT 
          @same_call := @callid = callid,
          @has_ended := @same_call AND (@has_ended OR @has_bye) AS has_ended,
          @has_18x := (@has_18x AND @same_call) OR method IN ('180','183'),
          @has_200 := (@has_200 AND @same_call) OR (@has_18x AND method = '200'),
          @has_bye := (@has_bye AND @same_call) OR (@has_200 AND method = 'BYE') AS has_bye,

          @start_date := CASE 
                           WHEN @has_200 THEN COALESCE(@start_date, `date`)
                         END AS start_date,
          @start_ms := CASE 
                         WHEN @has_200 THEN COALESCE(@start_ms, micro_ts)
                       END AS start_ms,
          @end_date := CASE 
                         WHEN @has_bye THEN COALESCE(@end_date, `date`)
                       END AS end_date,
          @end_ms := CASE 
                       WHEN @has_bye THEN COALESCE(@end_ms, micro_ts)
                     END AS end_ms,

          id,
          @callid := callid AS callid           

    FROM sip_signal

    JOIN (
      SELECT @callid := NULL,
             @has_ended := FALSE,
             @has_18x := FALSE,
             @has_200 := FALSE,
             @has_bye := FALSE,
             @start_date := NULL,
             @start_ms := NULL,
             @end_date := NULL,
             @end_ms := NULL                
         ) init

ORDER BY callid, micro_ts

      ) sip_call
WHERE has_bye 
  AND NOT has_ended

如果您想查看內部工作原理,只需自行運行內部SELECT(+ JOIN和ORDER BY)。

我沒有mySQL。..所以,這可能是一個嚴重的垃圾,但這是我想在它消失之前寫下來的內容-正如我所說,這看起來很亂

select callid, ,datediff(data,case when start1<=start2 then start1 else start2 end) as duration from 
   (select callid,call_from,call_to,min(starta) as start1,min(startb) as start2,min(data) from 
        (select callid,call_from,call_to,
          count(case when method = 180 THEN date END) starta,
          count(case when method = 183 THEN date END) startb,
          count(case when method = 200 THEN date END) data,
        from mydata) group by callid, call_from,call_to))

這有幫助嗎? 這會給您帶來想法嗎?

暫無
暫無

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

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