Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come calcolare i picchi massimi di chiamate in entrata?

Quando inizia una chiamata, il numero di chiamate aumenta. Al termine di una chiamata, il numero di chiamate diminuisce. Allora...

;with cte as
(
    select SessionStartTime as changetime,1 as CC from yourtable
    union all
    select SessionCloseTime,-1 from yourtable
)
    select top 1 changetime,rt from
    (
    select * from cte
        cross apply 
        (select SUM(cc) as rt from cte c where c.changetime<=cte.changetime) rt         
    ) v
    order by rt desc