Sqlserver
 sql >> база данни >  >> RDS >> Sqlserver

Групирайте таблицата в интервали от 15 минути

;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 fiddle



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Сборна функция - Замяна на NULL

  2. SQL Server Промяна на местоположението на TempDB файла

  3. Изключване на дял в SQL Server (T-SQL)

  4. Водещ заместващ знак за търсене в пълен текст на SQL Server

  5. Конфигуриране на известия за поща в базата данни в MS SQL Server