连续两行之间的人均时差

时间:2019-10-14 10:46:11

标签: mysql sql split strsplit date-difference

我有一些数据(广义上讲)由以下字段组成:

Person  TaskID   Start_time                      End_time
Alpha   1       'Wed, 18 Oct 2017 10:10:03 GMT' 'Wed. 18 Oct 2017 10:10:36 GMT'
Alpha   2       'Wed, 18 Oct 2017 10:11:16 GMT' 'Wed, 18 Oct 2017 10:11:28 GMT'
Beta    1       'Wed, 18 Oct 2017 10:12:03 GMT' 'Wed, 18 Oct 2017 10:12:49 GMT'
Alpha   3       'Wed, 18 Oct 2017 10:12:03 GMT' 'Wed, 18 Oct 2017 10:13:13 GMT'
Gamma   1       'Fri, 27 Oct 2017 22:57:12 GMT' 'Sat, 28 Oct 2017 02:00:54 GMT'
Beta    2       'Wed, 18 Oct 2017 10:13:40 GMT' 'Wed, 18 Oct 2017 10:14:03 GMT'

对于此数据,我需要的输出如下:

Person  TaskID Time_between_attempts
Alpha   1      NULL      ['Wed, 18 Oct 2017 10:10:03 GMT' - NULL]
Alpha   2      0:00:40   ['Wed, 18 Oct 2017 10:11:16 GMT' -'Wed, 18 Oct 2017 10:10:36 GMT']
Beta    1      NULL      ['Wed, 18 Oct 2017 10:12:03 GMT' - NULL]
Alpha   3      0:00:35   ['Wed, 18 Oct 2017 10:12:03 GMT' -'Wed, 18 Oct 2017 10:11:28 GMT']
Gamma   1      NULL      ['Fri, 27 Oct 2017 22:57:12 GMT' - NULL]
Beta    2      0:00:51   ['Wed, 18 Oct 2017 10:13:40 GMT' -'Wed, 18 Oct 2017 10:12:49 GMT']

我的要求如下:

a。对于给定的人(Alpha,Beta或Gamma),变量'time_between_attempts'的首次出现为零/ NULL-在示例中,我将其显示为NULL。

b。第二次(及其后)次,同一个人出现的时间将为非NULL或非零的“ time_between_attempts”。该变量是根据上一个任务的结束时间与下一个任务的开始时间之差计算得出的。

在这方面,我有以下问题:

  1. 如何编写可以帮助我实现所需输出的SQL脚本?

请注意,为简化起见,TaskID被写为整数。在原始数据中,TaskID很复杂,由不连续的字符串组成,例如:

'q:1392763916495:441',
'q:1392763916495:436'

任何对此的建议将不胜感激。

2 个答案:

答案 0 :(得分:1)

这回答了问题的原始版本。

您可以使用lag()timestampdiff()进行计算。假设您的值是真实的日期/时间或时间戳,那么您可以轻松地以秒为单位计算该值:

select t.*,
       timestampdiff(start_time,
                     lag(end_time) over (partition by person_id order by start_time)
                     seconds
                    )
from t;

如果值存储为字符串,请修复数据!同时,您可以在函数中使用str_to_date()

要将其作为时间值:

select t.*,
       (time(0) +
        interval timestampdiff(start_time,
                               lag(end_time) over (partition by person_id order by start_time)
                               seconds
                              ) second
       )
from t;

答案 1 :(得分:1)

使用self Join()方法。

    SELECT a.person, 
            a.taskid, 
            TIMEDIFF (DATE_FORMAT(STR_TO_DATE(a.Start_time, '%a, %d %b %Y %H:%i:%s'), '%Y-%m-%d %H:%i:%s') ,DATE_FORMAT(STR_TO_DATE(b.End_time, '%a, %d %b %Y %H:%i:%s'), '%Y-%m-%d %H:%i:%s') ) as Time_between_attempts,
            a.Start_time,
            b.End_time

        FROM   test a 
            LEFT JOIN test b 
                    ON a.person = b.person 
                        AND a.taskid = b.taskid + 1 
        ORDER  BY 1, 2; 

但这将忽略时区。