• <i id='TZ4dN'><tr id='TZ4dN'><dt id='TZ4dN'><q id='TZ4dN'><span id='TZ4dN'><b id='TZ4dN'><form id='TZ4dN'><ins id='TZ4dN'></ins><ul id='TZ4dN'></ul><sub id='TZ4dN'></sub></form><legend id='TZ4dN'></legend><bdo id='TZ4dN'><pre id='TZ4dN'><center id='TZ4dN'></center></pre></bdo></b><th id='TZ4dN'></th></span></q></dt></tr></i><div id='TZ4dN'><tfoot id='TZ4dN'></tfoot><dl id='TZ4dN'><fieldset id='TZ4dN'></fieldset></dl></div>

        <legend id='TZ4dN'><style id='TZ4dN'><dir id='TZ4dN'><q id='TZ4dN'></q></dir></style></legend>
        • <bdo id='TZ4dN'></bdo><ul id='TZ4dN'></ul>
      1. <small id='TZ4dN'></small><noframes id='TZ4dN'>

        <tfoot id='TZ4dN'></tfoot>

        将表格分组为 15 分钟间隔

        Group table into 15 minute intervals(将表格分组为 15 分钟间隔)
        <tfoot id='d2YnQ'></tfoot>

      2. <legend id='d2YnQ'><style id='d2YnQ'><dir id='d2YnQ'><q id='d2YnQ'></q></dir></style></legend>
          <tbody id='d2YnQ'></tbody>
            <bdo id='d2YnQ'></bdo><ul id='d2YnQ'></ul>
              • <i id='d2YnQ'><tr id='d2YnQ'><dt id='d2YnQ'><q id='d2YnQ'><span id='d2YnQ'><b id='d2YnQ'><form id='d2YnQ'><ins id='d2YnQ'></ins><ul id='d2YnQ'></ul><sub id='d2YnQ'></sub></form><legend id='d2YnQ'></legend><bdo id='d2YnQ'><pre id='d2YnQ'><center id='d2YnQ'></center></pre></bdo></b><th id='d2YnQ'></th></span></q></dt></tr></i><div id='d2YnQ'><tfoot id='d2YnQ'></tfoot><dl id='d2YnQ'><fieldset id='d2YnQ'></fieldset></dl></div>

                  <small id='d2YnQ'></small><noframes id='d2YnQ'>

                1. 本文介绍了将表格分组为 15 分钟间隔的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  T-SQL、SQL Server 2008 及更高版本

                  T-SQL, SQL Server 2008 and up

                  给定一个样本表

                   StatusSetDateTime   | UserID | Status    | StatusEndDateTime   | StatusDuration(in seconds)
                  ============================================================================
                   2012-01-01 12:00:00 | myID   | Available | 2012-01-01 13:00:00 | 3600
                  

                  我需要将其分解为使用 15 分钟间隔的视图,例如:

                  I need to break that down into a view that uses 15 minute intervals for example:

                  IntervalStart       | UserID | Status | Duration
                  
                  ===========================================
                  
                  2012-01-01 12:00:00 | myID | Available | 900 
                  
                  2012-01-01 12:15:00 | myID | Available | 900
                  
                  2012-01-01 12:30:00 | myID | Available | 900 
                  
                  2012-01-01 12:45:00 | myID | Available | 900 
                  
                  2012-01-01 13:00:00 | myID | Available | 0
                  
                  etc....
                  

                  现在我已经能够四处搜索并找到一些会崩溃的查询我在这里找到了类似的东西:

                  Now I've been able to search around and find some queries that will break down I found something similar for MySql Here :

                  T-SQL 的一些东西这里

                  And something for T-SQL Here

                  但在第二个示例中,他们对结果求和,而我需要将总持续时间除以用户按状态的间隔时间(900 秒).

                  But on the second example they are summing the results whereas I need to divide the total duration by the interval time (900 seconds) by user by status.

                  我能够调整第二个链接中的示例以将所有内容拆分为间隔,但返回了总持续时间,我无法弄清楚如何拆分间隔持续时间(并且仍然总结为原始总持续时间).

                  I was able to adapt the examples in the second link to split everything into intervals but the total duration time is returned and I cannot quite figure out how to get the Interval durations to split (and still sum up to the total original duration).

                  提前感谢您的见解!

                  第一次尝试

                   ;with cte as 
                      (select MIN(StatusDateTime) as MinDate
                            , MAX(StatusDateTime) as MaxDate
                            , convert(varchar(14),StatusDateTime, 120) as StartDate
                            , DATEPART(minute, StatusDateTime) /15 as GroupID
                            , UserID
                            , StatusKey
                            , avg(StateDuration) as AvgAmount
                       from AgentActivityLog
                       group by convert(varchar(14),StatusDateTime, 120)
                           , DATEPART(minute, StatusDateTime) /15
                           , Userid,StatusKey)
                  
                    select dateadd(minute, 15*GroupID, CONVERT(datetime,StartDate+'00'))
                           as [Start Date]
                         , UserID, StatusKey, AvgAmount as [Average Amount]
                    from cte
                  

                  第二次尝试

                  ;With cte As
                     (Select DateAdd(minute
                                     , 15 * (DateDiff(minute, '20000101', StatusDateTime) / 15)
                                     , '20000101') As StatusDateTime
                           , userid, statuskey, StateDuration
                      From AgentActivityLog)
                  
                   Select StatusDateTime, userid,statuskey,Avg(StateDuration)
                   From cte
                   Group By StatusDateTime,userid,statuskey;
                  

                  推荐答案

                  ;with cte_max as 
                  (
                     select dateadd(mi, -15, max(StatusEndDateTime)) as EndTime, min(StatusSetDateTime) as StartTime
                     from AgentActivityLog
                  ), times as
                  (
                      select StartTime as Time from cte_max
                      union all
                      select dateadd(mi, 15, c.Time)
                      from times as c
                          cross join cte_max as cm
                      where c.Time <= cm.EndTime
                  )
                  select
                      t.Time, A.UserID, A.Status,
                      case
                          when t.Time = A.StatusEndDateTime then 0
                          else A.StatusDuration / (count(*) over (partition by A.StatusSetDateTime, A.UserID, A.Status) - 1)
                      end as Duration
                  from AgentActivityLog as A
                      left outer join times as t on t.Time >= A.StatusSetDateTime and t.Time <= A.StatusEndDateTime
                  

                  sql 小提琴演示

                  这篇关于将表格分组为 15 分钟间隔的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  SQL query to group by day(按天分组的 SQL 查询)
                  What does SQL clause quot;GROUP BY 1quot; mean?(SQL 子句“GROUP BY 1是什么意思?意思是?)
                  MySQL groupwise MAX() returns unexpected results(MySQL groupwise MAX() 返回意外结果)
                  MySQL SELECT most frequent by group(MySQL SELECT 按组最频繁)
                  Include missing months in Group By query(在 Group By 查询中包含缺失的月份)
                  Why Mysql#39;s Group By and Oracle#39;s Group by behaviours are different(为什么 Mysql 的 Group By 和 Oracle 的 Group by 行为不同)

                  <small id='A2g0U'></small><noframes id='A2g0U'>

                      <bdo id='A2g0U'></bdo><ul id='A2g0U'></ul>

                          <tbody id='A2g0U'></tbody>
                      • <tfoot id='A2g0U'></tfoot>

                          <i id='A2g0U'><tr id='A2g0U'><dt id='A2g0U'><q id='A2g0U'><span id='A2g0U'><b id='A2g0U'><form id='A2g0U'><ins id='A2g0U'></ins><ul id='A2g0U'></ul><sub id='A2g0U'></sub></form><legend id='A2g0U'></legend><bdo id='A2g0U'><pre id='A2g0U'><center id='A2g0U'></center></pre></bdo></b><th id='A2g0U'></th></span></q></dt></tr></i><div id='A2g0U'><tfoot id='A2g0U'></tfoot><dl id='A2g0U'><fieldset id='A2g0U'></fieldset></dl></div>

                            <legend id='A2g0U'><style id='A2g0U'><dir id='A2g0U'><q id='A2g0U'></q></dir></style></legend>